Mapbox spec: [terrain](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#terrain) ```tsx import { Terrain } from '@rnmapbox/maps'; Terrain ``` ## props ### sourceID ```tsx string ``` Name of a source of raster_dem type to be used for terrain elevation. ### exaggeration ```tsx Value ``` Deprecated, use exaggeration in style instead ### style ```tsx TerrainLayerStyleProps ``` Customizable style attributes ## styles * source
* exaggeration
___ ### source Name: `source` Mapbox spec: [source](https://docs.mapbox.com/style-spec/reference/layers/#source) #### Description Name of a source of `raster_dem` type to be used for terrain elevation. #### Type `string` ___ ### exaggeration Name: `exaggeration` Mapbox spec: [exaggeration](https://docs.mapbox.com/style-spec/reference/layers/#exaggeration) #### Description Exaggerates the elevation of the terrain by multiplying the data from the DEM with this value. #### Type `number` #### Default Value `1` #### Minimum `0` #### Maximum `1000` #### Requires `source` #### Expression Parameters: `zoom` ___ ### exaggerationTransition Name: `exaggerationTransition` #### Description The transition affecting any changes to this layer’s exaggeration property. #### Type `{ duration, delay }` #### Units `milliseconds` #### Default Value `{duration: 300, delay: 0}`