blob: fab177774d3daf9a23f10140c29f7161631491df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import React, { Component } from 'react';
import { Map, TileLayer, Marker, Popup } from 'react-leaflet';
import { connect } from 'react-redux'
import DivIcon from './leaflet/DivIcon';
const mapStateToProps = state => ({
positions: state.positions
});
class MainMap extends Component {
state = {
lat: 0,
lng: 0,
zoom: 3,
}
render() {
const position = [this.state.lat, this.state.lng]
const markers = this.props.positions.map(position =>
<DivIcon position={{ lat: position.latitude, lng: position.longitude }} className="" iconSize={[38, 95]}>
<svg className="user-location" viewBox="0 0 120 120" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<text x="20" y="60" style={{fontSize: '48px'}}>TEST</text>
</svg>
</DivIcon>
);
return (
<Map style={{height: this.props.height, width: this.props.width}} center={position} zoom={this.state.zoom}>
<TileLayer
attribution='© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="https://carto.com/attributions">CARTO</a>'
url="https://cartodb-basemaps-a.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png" />
{markers}
</Map>
)
}
}
export default connect(mapStateToProps)(MainMap);
|