react-map-gl

React friendly API wrapper around MapboxGL JS

README

version build downloads

react-map-gl | Docs


react-map-gl is a suite of React components designed to provide a React API for Mapbox GL JS-compatible libraries. More information in the online documentation.


Installation


Using react-map-gl requires react >= 16.3.

  1. ```sh
  2. npm install --save react-map-gl mapbox-gl
  3. ```

Example


  1. ``` js
  2. import * as React from 'react';
  3. import Map from 'react-map-gl';

  4. function App() {
  5.   return <Map
  6.     initialViewState={{
  7.       longitude: -100,
  8.       latitude: 40,
  9.       zoom: 3.5
  10.     }}
  11.     style={{width: 600, height: 400}}
  12.     mapStyle="mapbox://styles/mapbox/streets-v9"
  13.   />;
  14. }
  15. ```

Using Mapbox Tokens


Starting with v2.0, mapbox-gl requires a Mapbox token for any usage, with or without the Mapbox data service. See about Mapbox tokens for your options.

To show maps from a service such as Mapbox you will need to register on their website in order to retrieve an access token required by the map component, which will be used to identify you and start serving up map tiles. The service will be free until a certain level of traffic is exceeded.

There are several ways to provide a token to your app, as showcased in some of the example folders:

Provide a mapboxAccessToken prop to the map component
Set the MapboxAccessToken environment variable (or set REACT_APP_MAPBOX_ACCESS_TOKEN if you are using Create React App)
Provide it in the URL, e.g ?access_token=TOKEN


Contribute




Attributions


react-map-gl is part of vis.gl, an Urban Computing Foundation project.

Development is also supported by