Class RasterDEMTileSource

A source containing raster DEM tiles (See the Style Specification for detailed documentation of options.) This source can be used to show hillshading and 3D terrain

Example

map.addSource('raster-dem-source', {
type: 'raster-dem',
url: 'https://demotiles.maplibre.org/terrain-tiles/tiles.json',
tileSize: 256
});

See

3D Terrain

Hierarchy (view full)

Implements

Methods

  • Returns a true if this instance of Evented or any forwardeed instances of Evented have a listener for the specified type.

    Parameters

    • type: string

      The event type

    Returns boolean

    true if there is at least one registered listener for specified event type, false otherwise

  • Adds a listener to a specified event type.

    Parameters

    • type: string

      The event type to add a listen for.

    • listener: Listener

      The function to be called when the event is fired. The listener function is called with the data object passed to fire, extended with target and type properties.

    Returns this

  • Adds a listener that will be called only once to a specified event type.

    The listener will be called first time the event fires after the listener is registered.

    Parameters

    • type: string

      The event type to listen for.

    • Optional listener: Listener

      The function to be called when the event is fired the first time.

    Returns Promise<any> | RasterDEMTileSource

    this or a promise if a listener is not provided

  • Sets the source tiles property and re-renders the map.

    Parameters

    • tiles: string[]

      An array of one or more tile source URLs, as in the raster tiles spec (See the Style Specification

    Returns this

  • Sets the source url property and re-renders the map.

    Parameters

    • url: string

      A URL to a TileJSON resource. Supported protocols are http: and https:.

    Returns this