maputnik/src/map.jsx

23 lines
509 B
React
Raw Normal View History

import React from 'react'
2016-09-09 14:09:02 +02:00
import ReactMapboxGl, { ZoomControl } from "react-mapbox-gl"
2016-09-09 11:29:18 +02:00
import theme from './theme.js'
2016-09-08 19:47:29 +02:00
export class Map extends React.Component {
2016-09-08 20:35:21 +02:00
constructor(props) {
super(props)
2016-09-08 20:35:21 +02:00
}
2016-09-08 19:47:29 +02:00
render() {
if (this.props.mapStyle) {
return <ReactMapboxGl
2016-09-09 14:09:02 +02:00
style={this.props.mapStyle}
accessToken="pk.eyJ1IjoibW9yZ2Vua2FmZmVlIiwiYSI6IjIzcmN0NlkifQ.0LRTNgCc-envt9d5MzR75w">
<ZoomControl/>
</ReactMapboxGl>
2016-09-09 11:29:18 +02:00
}
return <div style={{backgroundColor: theme.colors.black}}/>
2016-09-08 19:47:29 +02:00
}
}