Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alpacatravel/react-map-gl-alt
React Mapbox-GL-JS binding with improved performance, event and API exposure
https://github.com/alpacatravel/react-map-gl-alt
Last synced: about 2 months ago
JSON representation
React Mapbox-GL-JS binding with improved performance, event and API exposure
- Host: GitHub
- URL: https://github.com/alpacatravel/react-map-gl-alt
- Owner: AlpacaTravel
- License: other
- Created: 2016-10-15T05:40:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T13:53:06.000Z (about 2 years ago)
- Last Synced: 2024-04-24T14:18:57.116Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.38 MB
- Stars: 42
- Watchers: 6
- Forks: 2
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React WebGL Maps with Mapbox GL JS
*react-map-gl-alt* provides a [React](http://facebook.github.io/react/) friendly
API wrapper around [Mapbox GL JS](https://www.mapbox.com/mapbox-gl-js/). A webGl
based vector tile mapping library.This library is "bare-bones" without the kitchen-sink, for more direct API
interactions with the mapbox API.[![NPM](https://nodei.co/npm/react-map-gl-alt.png?downloads=true&downloadRank=true)](https://nodei.co/npm/react-map-gl-alt/)
![Dependency Management](https://david-dm.org/AlpacaTravel/react-map-gl-alt.svg)## Overview
This project looks at improved programmatic bindings to the API, motion control,
event handling and style management (such as Redux controlled state opposed to
React or style URLs).At a basic level, this library provides your React project with beautiful WebGL
maps that can be used for data visualiations and improved interactivity.If you plan on creating simple maps and are new to mapbox gl js, you may find
simpler integrations using [react-mapbox-gl](https://github.com/alex3165/react-mapbox-gl).
If you require finer control of your style, API and want to leverage more of the
API this project we think will help you.## Overview
### Installation
```
npm install react-map-gl-alt --save
```This package works with compatible mapbox-gl-js build approaches, including
webpack, browserify, etc.#### Using Webpack
You will need to set your resolve "alias" section to include the mapbox gl js
dist file directly. Mapbox GL JS has recommended this approach since version
0.25.0.See [webpack configuration example](https://github.com/AlpacaTravel/react-map-gl-alt/blob/master/example/webpack.config.js)
### Simple Usage
```jsx
import MapGL from 'react-map-gl-alt';// Simple react component returning your webGL map
export const MapExample = () => (
);
```## Running the examples
Clone the example to your local fs. The example shows a simple full screen
interaction controlled by this component (built using webpack etc).```
npm install
npm start
```### Usage (showing map accessor interaction with map events)
```jsx
const hover = (e) => {
// Access features under cursor through safe non-mutable map facade
const features = e.target.queryRenderedFeatures(e.point);
}
const move = (e) => {
// Differentiate user interaction versus flyTo
if (e.originalEvent) {
console.log('A human moved the map');
}
// Access map props (no mutation possible)
console.log(e.target.getCenter(), e.target.getZoom());
}// Can update center/zoom etc to move
return (
({ command: 'flyTo', args: [{
...target,
// Use animation options, duration etc.
speed: 1.5,
curve: 1.8,
}])}
scrollZoomDisabled={true}
>
{ this.setState({ loaded: true }); }}
onError={console.error}
onMouseMove={hover}
onMove={move}
onClick={...}
/>
);
```## Orienting the viewport
You can provide a number of props to help control the location of the map. This
includes providing center, longitude latitude or a bounds.* Supply a center or longitude/latitude props (LngLat like center is prefered)
* Supply bounds (e.g. LngLatBounds like)
* Supply zoom/bearing/pitch```jsx
// Using a bounds
return (
({
command: 'fitBounds',
args: [
target.bounds,
{ animate: false, padding: 50 }
],
})}
/>
);
```Note: Mapbox API does not support instantiating a map with just a bounds,
you need to mount the component with a center and then apply your bounds.## Map Options
You can adjust the map following map options through the `````` exposed
props;* scrollZoomDisabled (default false)
* dragRotateDisabled (default false)
* dragPanDisabled (default false)
* keyboardDisabled (default false)
* doubleClickZoomDisabled (default false)
* touchZoomRotateDisabled (default false)
* trackResizeDisabled (default false)
* interactiveDisabled (default false)
* pitchWithRotateDisabled (deafult false)
* attributionControlDisabled (default false)
* failIfMajorPerformanceCaveatDisabled (default false)
* preserveDrawingBuffer (default true)
* bearingSnap (default 7)
* mapClasses (default [])There are also some enhanced behaviours to assist.
* worldCopyJumpDisabled (default true)
* trackResizeContainerDisabled (default true)
* crossSourceCollisionsDisabled (default false)## The Map Facade
To reduce the state managed outside of this component, the component offers a
facade to the map object. The facade provides all accessor based methods for
those familiar with the mapbox API spec (e.g. getCenter, getCanvas etc)```jsx
const click = (e) => {
// Access the read only properties of the map
const map = e.target;
}...
return (
);
```This is included along with events from the component/api, replacing the
exposed 'target' event.Note: This Map Facade is available to children context.
### Transform
The map facade also offers access to the map transform. This is done through
a Transform Facade.```jsx
// Access the transform facade (read only) through the map facade
const transform = map.transform;// Optionally use a clone to have a working transform (detached);
const clonedTransform = map.cloneTransform(); // version unlocked clone..
```The cloned transform can provide the ability to calculate zoom around and other
various viewport calculations in a interaction controlled state.### Available Events
All the current documented events are accessible in this implementation. All
are available through using the MapEvents component with the prefix 'on', e.g.
onClick, onLoad, onMouseMove, onDrag etc.* onStyleLoad
* onResize
* onWebGLContextLost
* onWebGLContextRestored
* onRemove
* onDataLoading
* onRender
* onLoad
* onData
* onError
* onMouseOut
* onMouseDown
* onMouseUp
* onMouseMove
* onTouchStart
* onTouchEnd
* onTouchMove
* onTouchCancel
* onClick
* onDblClick
* onContextMenu
* onMoveStart
* onMove
* onMoveEnd
* onZoomStart
* onZoomEnd
* onZoom
* onBoxZoomCancel
* onBoxZoomEnd
* onBoxZoomStart
* onRotateStart
* onRotateEnd
* onDragStart
* onDragEnd
* onDrag
* onPitchNote: This component can be mounted many times in the children of the MapGL
component, enabling you to have many different function interactions depending
on what is mounted. There is support for multiple 'onClick' etc. listeners
using this method.## Controlling move animations
You can provide new viewport details to the map, and as well have the
opportunity to control the animation. This allows you to control the Camera and
Animation options, as well as customise the usual Mapbox API args.### Supported move animations
* flyTo
* jumpTo
* panTo
* zoomTo
* easeTo
* rotateTo
* fitBounds
* panTo
* fitScreenCoordinatesOther possible move control include zoomIn/zoomOut, snapToNorth, resetNorth. Be
cautious using these as you need to anticipate their state.### Usage with move function
```jsx
const move = (target) => ({
command: 'flyTo',
args: [
{
...target, // Standard target viewport
// Additional camera/animation options
speed: 0.2, // Slow it down
curve: 1,
// Control the easing
easing: function(t) {
return t;
}
}
]
});return (
);
```### Controlled animation
Supporting stateless behaviour, this library can use React-Motion or any other
animation prop controled easing/animation library.```jsx
{({ latitude, longitude }) => }
```
### Controlling viewport interactions (stateless map viewport)
If you chose to fully control the viewstate component and control your own
interactions, you can wrap this component in your own interaction component.The child context provides access to the read only Map Facade, which supports
read-only project/unproject/transform as well as a cloneTransform etc.```jsx
return (
this.setState({ viewport })}
/>
);
```### featureStates
You can pass the prop of featureState with an array of feature states.
```
// References to the feature state
const feature = { source: 'mySource', sourceLayer: 'default', id: '123' };
const state = { selected: true };const featureStates = [
{ feature, state }
];// Apply to the prop featureStates
```
### Controlling Attribution
* attributionControlDisabled (default false)
* logoPosition (default 'bottom-left')
* customAttribution (default null, accepts string|array)### Additional Props for initiation of maps
In addition to the API offered above, the additional props are exposed for
initiating the map:* collectResourceTimingDisabled (default true)
* transformRequest (default null)
* localIdeographFontFamily (default null)
* maxTileCacheSize (default null)
* clickTolerance (default 3)### worldCopyJumpDisabled (Experimental - default false)
When enabled, the map tracks the pan to another copy of the world and resets
the center. This is to assist emulating the behaviour of Leaflet
world copy jump behaviour. This behaviour will reset the center to the wrapped
center after the end of a move behaviour.This can help the projection of your overlays (popups and custom markers etc)
that typically have problems projecting with illegal lng/lat values.### trackResizeContainerDisabled (Experimental - default false)
When enabled, when the container is resized (opposed to the window), the map
will have a resize() call applied. This can assist where a transition happens
to the map component and it is important to call resize().### crossSourceCollisionsDisabled (default false)
With the introduction of 0.46.0, Mapbox GL JS support for disabling cross source
collissions has been introduced. Apply this prop to the map to apply the map
option.