Map Styles
Browse the available Mappinest map styles, copy the StyleJSON URL, and preview each style.
Mappinest currently provides four available map styles. Each style has a stable style ID and can be loaded through the same StyleJSON endpoint pattern.
Custom style editing is not available yet. Use one of the supported style IDs below.
Style Endpoint pattern
GET
Choose one of the supported style IDs from the table and replace only the {styleId} part in the URL. For map style integrations, use the StyleJSON URL shown above.
How to implement a style
MapLibre GL JS / Mapbox GL JS using the light style
const apiKey = 'YOUR_MAPPINEST_KEY';
const map = new maplibregl.Map({
container: 'map',
style: `https://api.mappinest.com/v1/styles/light/style.json?key=${apiKey}`,
center: [15, 45],
zoom: 5
});Schema and source layers
The vector layers used by these styles broadly follow the OpenMapTiles schema. That makes it easier to inspect source-layer names and compare behavior with other OpenMapTiles-based map styles.
What to read next
Last updated: July 3, 2026



