maputnik/src/components/map/MapboxGlMap.jsx

43 lines
1 KiB
React
Raw Normal View History

import React from 'react'
2016-12-19 12:51:23 +01:00
import MapboxGl from 'mapbox-gl'
import validateColor from 'mapbox-gl-style-spec/lib/validate/validate_color'
2016-12-20 11:44:22 +01:00
import Map from './Map.jsx'
import style from '../../libs/style.js'
export default class MapboxGlMap extends Map {
2016-12-19 21:21:10 +01:00
static propTypes = {
onMapLoaded: React.PropTypes.func,
}
static defaultProps = {
onMapLoaded: () => {}
}
2016-12-19 14:52:04 +01:00
constructor(props) {
super(props)
this.state = { map: null }
}
componentWillReceiveProps(nextProps) {
2016-12-20 13:28:50 +01:00
if(!this.state.map) return
2016-12-20 13:28:50 +01:00
//Mapbox GL now does diffing natively so we don't need to calculate
//the necessary operations ourselves!
this.state.map.setStyle(style.toJSON(nextProps.mapStyle), { diff: true})
}
componentDidMount() {
MapboxGl.accessToken = this.props.accessToken
const map = new MapboxGl.Map({
container: this.container,
style: style.toJSON(this.props.mapStyle),
});
map.on("style.load", (...args) => {
2016-12-19 21:21:10 +01:00
this.props.onMapLoaded(map)
this.setState({ map });
});
}
}