Created
November 7, 2025 08:09
-
-
Save do-me/c67c3e101d9ade662c4986bb03e1f309 to your computer and use it in GitHub Desktop.
Mapterhorn 3D DEM + ArcGIS Online World Imagery Map Style
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": { | |
| "arcgisonline": { | |
| "type": "raster", | |
| "tiles": [ | |
| "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
| ], | |
| "tileSize": 256, | |
| "maxzoom": 18, | |
| "attribution": "ESRI © <a href='http://www.esri.com'>ESRI</a>" | |
| }, | |
| "terrainSource": { | |
| "type": "raster-dem", | |
| "url": "https://tiles.mapterhorn.com/tilejson.json" | |
| }, | |
| "hillshadeSource": { | |
| "type": "raster-dem", | |
| "url": "https://tiles.mapterhorn.com/tilejson.json" | |
| } | |
| }, | |
| "layers": [ | |
| { | |
| "id": "arcgisonline", | |
| "type": "raster", | |
| "source": "arcgisonline" | |
| }, | |
| { | |
| "id": "hills", | |
| "type": "hillshade", | |
| "source": "hillshadeSource", | |
| "paint": { | |
| "hillshade-shadow-color": "#473B24" | |
| } | |
| } | |
| ], | |
| "terrain": { | |
| "source": "terrainSource", | |
| "exaggeration": 1 | |
| }, | |
| "sky": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment