2016-11-25 13:31:41 +01:00
|
|
|
import React from 'react'
|
2016-12-19 12:51:23 +01:00
|
|
|
import MapboxGl from 'mapbox-gl'
|
2016-11-25 13:31:41 +01:00
|
|
|
import validateColor from 'mapbox-gl-style-spec/lib/validate/validate_color'
|
|
|
|
|
2016-12-20 11:44:22 +01:00
|
|
|
import style from '../../libs/style.js'
|
|
|
|
|
2016-12-24 14:42:57 +01:00
|
|
|
export default class MapboxGlMap extends React.Component {
|
2016-12-19 21:21:10 +01:00
|
|
|
static propTypes = {
|
2016-12-24 14:42:57 +01:00
|
|
|
onDataChange: React.PropTypes.func,
|
|
|
|
mapStyle: React.PropTypes.object.isRequired,
|
|
|
|
accessToken: React.PropTypes.string,
|
2016-12-19 21:21:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static defaultProps = {
|
2016-12-24 14:42:57 +01:00
|
|
|
onMapLoaded: () => {},
|
|
|
|
onDataChange: () => {},
|
2016-12-19 21:21:10 +01:00
|
|
|
}
|
|
|
|
|
2016-12-19 14:52:04 +01:00
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = { map: null }
|
|
|
|
}
|
2016-12-24 14:42:57 +01:00
|
|
|
|
2016-11-25 13:31:41 +01:00
|
|
|
componentWillReceiveProps(nextProps) {
|
2016-12-20 13:28:50 +01:00
|
|
|
if(!this.state.map) return
|
2016-11-25 13:31:41 +01:00
|
|
|
|
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!
|
2016-12-20 16:08:49 +01:00
|
|
|
this.state.map.setStyle(nextProps.mapStyle, { diff: true})
|
2016-11-25 13:31:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
MapboxGl.accessToken = this.props.accessToken
|
|
|
|
|
|
|
|
const map = new MapboxGl.Map({
|
|
|
|
container: this.container,
|
2016-12-20 16:08:49 +01:00
|
|
|
style: this.props.mapStyle,
|
2016-12-24 14:42:57 +01:00
|
|
|
})
|
2016-11-25 13:31:41 +01:00
|
|
|
|
2016-12-24 14:42:57 +01:00
|
|
|
map.on("style.load", () => {
|
2016-11-25 13:31:41 +01:00
|
|
|
this.setState({ map });
|
2016-12-24 14:42:57 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
map.on("data", e => {
|
|
|
|
if(e.dataType !== 'tile') return
|
|
|
|
this.props.onDataChange({
|
|
|
|
map: this.state.map
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <div
|
|
|
|
ref={x => this.container = x}
|
|
|
|
style={{
|
|
|
|
position: "fixed",
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
height: "100%",
|
|
|
|
width: "100%",
|
|
|
|
}}></div>
|
2016-11-25 13:31:41 +01:00
|
|
|
}
|
|
|
|
}
|