Created
April 27, 2026 19:31
-
-
Save ArthurDelannoyazerty/54e6024a3ed228fcdbee43a45c206fdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 8, | |
| "sources": { | |
| "esri-satellite": { | |
| "type": "raster", | |
| "tiles": ["https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}"], | |
| "tileSize": 256 | |
| }, | |
| "maptiler-labels": { | |
| "type": "vector", | |
| "url": "https://api.maptiler.com/tiles/v3/tiles.json?key=YOUR_MAPTILER_KEY" | |
| } | |
| }, | |
| "layers": [ | |
| { "id": "satellite", "type": "raster", "source": "esri-satellite" }, | |
| { | |
| "id": "labels", | |
| "type": "symbol", | |
| "source": "maptiler-labels", | |
| "source-layer": "place", | |
| "layout": { "text-field": "{name:latin}", "text-size": 12 } | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 8, | |
| "sources": { | |
| "esri-satellite": { | |
| "type": "raster", | |
| "tiles": [ | |
| "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
| ], | |
| "tileSize": 256, | |
| "attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community" | |
| } | |
| }, | |
| "layers": [ | |
| { | |
| "id": "satellite", | |
| "type": "raster", | |
| "source": "esri-satellite", | |
| "minzoom": 0, | |
| "maxzoom": 20 | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment