react-map-gl | Docs
npm install --save react-map-gl
-
browserify- react-map-gl is extensively tested withbrowserifyand works without configuration. -
webpack 2- look at the exhibit-webpack folder, demonstrating a working demo usingwebpack.
In general, for non-browserify based environments, make sure you have read the instructions on the mapbox-gl-js README.
import MapGL from 'react-map-gl';
<MapGL
width={400}
height={400}
latitude={37.7577}
longitude={-122.4376}
zoom={8}
onChangeViewport={viewport => {
const {latitude, longitude, zoom} = viewport;
// Optionally call `setState` and use the state to update the map.
}}
/>react-map-gl provides React-friendly components like Marker, Popup etc.
The main point of using a map is usuallt to visualize geospatial data on top of it. react-map-gl provides several solutions
deck.gl is a companion module to react-map-gl that provide a number of classic data visualization overlays (scatterplots, choropleths etc) implemented in WebGL. These overlays are suitable for very large and/or dynamic data sets, and for use in perspective mode
applications.
react-map-gl provides a basic overlay API. You can use the built-in visualization overlays, or create your own.
react-map-gl fully supports mapbox-gl perspective mode (pitch and bearing).
In addition, for a set of high-performance geospatial data visualiation overlays that are 100% compatible with mapbox-gl perspective mode, look at deck.gl.
TBD
The mapStyle property of the MapGL as well as several of the built in
overlay properties must be provided as ImmutableJS objects. This allows the library to be fast since computing changes to props only involves checking if the immutable objects are the same instance.
Install project dependencies and check that the tests run
npm install
npm test
Note on yarn: yarn does not appear to be compatible with mapbox-gl v0.31,
in terms of installing correct versions of dependencies needed to run
test scripts in the folder.
While this is likely to change, for now it is recommended it is recommended to
use npm install in the root folder of react-map-gl. This restriction only
applies when installing in the root folder; yarn is still supported and
recommended when installing the examples in the examples folder.
Then start the main example in examples/main by running the shortcut
npm start
This should open a new tab in your browser with the examples. To make the maps load, either:
- add
?access_token=TOKENto the URL whereTOKENis a valid Mapbox access token, or - set the
MapboxAccessTokenenvironment variable before runningnpm start
- Unit Tests - it is expected that any feature is accompanied by standard unit tests in test folder.
- Run Unit Tests in Node - Note that This component uses WebGL, but it still runs under Node.js (using headless-gl and jsdom). This is how the standard
npm testscript runs. - Run Unit Tests in Browser - It is also important to run unit tests in the browser, via
npm run test-browser. - Manual Testing - In addition, please test drive new and existing features by running
npm startand manually testing the demos.
Contributions are welcome. It can be helpful to check with maintainers before opening your PR, just open an issue and describe your proposal. Also, be aware that you will need to complete a short open source contribution form before your pull request can be accepted.
