🗺️Styles

List of available Map Styles

Vector Base Maps

Additionally to the default Mapbox referencing of map styles you can use one of the following shortcuts.

<MapGL options={{ style: 'mb:basic' }}></MapGL>

Mapbox

  • mb:standard

  • mb:light

  • mb:dark

  • mb:street

  • mb:outdoor

  • mb:sat

  • mb:sat_street

  • mb:nav

  • mb:nav_night

  • mb:nav_base

  • mb:nav_base_night

Raster Tile Base Maps

Additionally to the default Mapbox referencing of raster styles you can use one of the following shortcuts.

<Source
  source={{
    type: 'raster',
    tiles: ['osm:org'],
    apikey: '...', // only needed for Thunder Forest
  }}
>
  <Layer
    style={{
      type: 'raster',
    }}
  />
</Source>
  • osm:org

  • osm:human

  • osm:cycle

  • open:topo

Last updated