This component allows apps to create a map layer using React.
import * as React from 'react';
import Map, {Layer} from 'react-map-gl';
const parkLayer = {
id: 'landuse_park',
type: 'fill',
source: 'mapbox',
'source-layer': 'landuse',
filter: ['==', 'class', 'park'],
paint: {
'fill-color': '#4E3FC8'
}
};
function App() {
return <Map
initialViewState={{
longitude: -122.4,
latitude: 37.8,
zoom: 14
}}
mapStyle="mapbox://styles/mapbox/streets-v9"
>
<Layer {...parkLayer} />
</Map>;
}
The props provided to this component should be conforming to the Mapbox layer specification.
When props change shallowly, the component will perform style diffing to update the layer. Avoid defining constant objects/arrays inline may help performance.
Once a <Layer>
is mounted, the following props should not change. If you add/remove multiple JSX layers dynamically, make sure you use React's key prop to give each element a stable identity.
id
: stringUnique identifier of the layer. If not provided, a default id will be assigned.
type
: stringRequired. Type of the layer.
beforeId
: stringThe ID of an existing layer to insert this layer before. If this prop is omitted, the layer will be appended to the end of the layers array. This is useful when using dynamic layers with a map style from a URL.
Note that layers are added by the order that they mount. They are NOT reordered later if their relative positions in the JSX tree change. If dynamic reordering is desired, you should manipulate beforeId
for consistent behavior.
source
: stringsource
is required by some layer types in the Mapbox style specification. If <Layer>
is used as the child of a Source component, this prop will be overwritten by the id of the parent source.