Add 3D terrain to a map
This example adds 3D terrain to a map using setTerrain
with a raster-dem
source.
It uses exaggeration
to exaggerate the height of the terrain. It also adds a sky
layer that shows when the map is highly pitched.
<!DOCTYPE html><html><head><meta charset="utf-8"><title>Add 3D terrain to a map</title><meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"><link href="https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.css" rel="stylesheet"><script src="https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.js"></script><style>body { margin: 0; padding: 0; }#map { position: absolute; top: 0; bottom: 0; width: 100%; }</style></head><body><div id="map"></div> <script> // TO MAKE THE MAP APPEAR YOU MUST // ADD YOUR ACCESS TOKEN FROM // https://account.mapbox.com mapboxgl.accessToken = '<your access token here>';var map = new mapboxgl.Map({container: 'map',zoom: 13.1,center: [-114.34411, 32.6141],pitch: 85,bearing: 80,style: 'mapbox://styles/mapbox-map-design/ckhqrf2tz0dt119ny6azh975y'}); map.on('load', function () {map.addSource('mapbox-dem', {'type': 'raster-dem','url': 'mapbox://mapbox.mapbox-terrain-dem-v1','tileSize': 512,'maxzoom': 14});// add the DEM source as a terrain layer with exaggerated heightmap.setTerrain({ 'source': 'mapbox-dem', 'exaggeration': 1.5 }); // add a sky layer that will show when the map is highly pitchedmap.addLayer({'id': 'sky','type': 'sky','paint': {'sky-type': 'atmosphere','sky-atmosphere-sun': [0.0, 0.0],'sky-atmosphere-sun-intensity': 15}});});</script> </body></html>