aed-mapa/src/map_style/style.json

80 wiersze
1.9 KiB
JSON

{
"version": 8,
"metadata": {
"maputnik:renderer": "mbgljs"
},
"center": [20, 52],
"zoom": 6,
"sources": {
"raster-tiles": {
"type": "raster",
"tiles": [
"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png",
"https://b.tile.openstreetmap.org/{z}/{x}/{y}.png",
"https://c.tile.openstreetmap.org/{z}/{x}/{y}.png"
],
"tileSize": 256,
"maxzoom": 19,
"paint": {
"raster-fade-duration": 100
}
},
"aed-locations": {
"type": "geojson",
"data": "https://aed.openstreetmap.org.pl/dev/aed_poland.geojson",
"cluster": true,
"clusterRadius": 30,
"maxzoom": 15
}
},
"glyphs": "https://fonts.openmaptiles.org/{fontstack}/{range}.pbf",
"sprite": "https://aed.openstreetmap.org.pl/dev/src/map_style/sprite",
"layers": [{
"id": "background",
"type": "raster",
"source": "raster-tiles",
"minZoom": 0,
"maxZoom": 19
},
{
"id": "unclustered",
"type": "symbol",
"source": "aed-locations",
"filter": ["!", ["has", "point_count"]],
"layout": {
"icon-image": "marker_default",
"icon-size": 0.5,
"icon-allow-overlap": true
}
},
{
"id": "clustered-circle",
"type": "circle",
"source": "aed-locations",
"filter": ["has", "point_count"],
"paint": {
"circle-color": "rgba(0,145,64, 0.85)",
"circle-radius": 16,
"circle-stroke-color": "rgba(245, 245, 245, 0.88)",
"circle-stroke-width": 2
}
},
{
"id": "clustered-label",
"type": "symbol",
"source": "aed-locations",
"filter": ["has", "point_count"],
"layout": {
"text-field": "{point_count_abbreviated}",
"text-font": ["Open Sans Bold"],
"text-size": 12,
"text-letter-spacing": 0.05
},
"paint": {
"text-color": "#f5f5f5"
}
}
],
"id": "aed_map_style"
}