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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
import React from 'react'
import ReactDOM from 'react-dom'
import 'rc-slider/assets/index.css'
import Slider from 'rc-slider'
// Need to directly script-load instead of proper import since GL JS doesn't support webpack
// https://github.com/mapbox/mapbox-gl-js/issues/1649
require('script!mapbox-gl/dist/mapbox-gl.js')
import './style.scss'
class GLMap extends React.Component {
// Adapted from Tim Welch's code that can be found at
// https://github.com/twelch/react-mapbox-gl-seed/blob/4d78eb0/src/components/GLMap.js
static propTypes = {
view: React.PropTypes.object, // default map view
token: React.PropTypes.string // mapbox auth token
}
componentDidMount () {
mapboxgl.accessToken = this.props.token
this.map = new mapboxgl.Map(this.props.view)
this.map.on('style.load', () => {
this.map.addSource('radar-140', {
"type": "image",
"url": "/static/img/20160101_103000_140.png",
"coordinates": [
[33.35317413, 33.27232471],
[36.32243686, 33.27232471],
[36.32243686, 30.72293428],
[33.35317413, 30.72293428]
]
})
this.map.addSource('radar-280', {
"type": "image",
"url": "/static/img/20160101_103000_280.png",
"coordinates": [
[31.93095218, 34.5156862],
[37.86644267, 34.5156862],
[37.86644267, 29.42911589],
[31.93095218, 29.42911589]
]
})
this.map.addLayer({
"id": "radar-140",
"source": "radar-140",
"type": "raster",
"paint": {
"raster-opacity": 0.85
},
"layout": {
"visibility": "none"
}
})
this.map.addLayer({
"id": "radar-280",
"source": "radar-280",
"type": "raster",
"paint": {
"raster-opacity": 0.85
}
})
})
}
componentWillUnmount () {
this.map.remove()
}
render () {
return <div id='map'></div>
}
}
class Map extends React.Component {
render () {
var mapStyle = {
"version": 8,
"name": "Dark",
"sources": {
"mapbox": {
"type": "vector",
"url": "mapbox://mapbox.mapbox-streets-v6"
}
},
"sprite": "mapbox://sprites/mapbox/dark-v8",
"glyphs": "mapbox://fonts/mapbox/{fontstack}/{range}.pbf",
"layers": [
{
"id": "background",
"type": "background",
"paint": {"background-color": "#111"}
},
{
"id": "boundaries",
"source": "mapbox",
"source-layer": "admin",
"type": "line",
"paint": {"line-color": "#797979"},
"filter": ["all", ["<=", "admin_level", 2], ['==', 'maritime', 0]]
},
{
"id": "water",
"source": "mapbox",
"source-layer": "water",
"type": "line",
"paint": {"line-color": "#797979"}
},
{
"id": "water2",
"source": "mapbox",
"source-layer": "water",
"type": "fill",
"paint": {"fill-color": "#111122"}
},
{
"id": "cities",
"source": "mapbox",
"source-layer": "place_label",
"type": "symbol",
"filter": ["all", ["<=", "localrank", 6]],
"layout": {
"text-field": "{name_en}",
"text-font": ["DIN Offc Pro Bold", "Arial Unicode MS Bold"],
"text-size": {"stops": [[4, 9], [6, 12]]}
},
"paint": {
"text-color": "#969696",
"text-halo-width": 2,
"text-halo-color": "rgba(0, 0, 0, 0.85)"
}
},
{
"id": "states",
"source": "mapbox",
"source-layer": "state_label",
"type": "symbol",
"layout": {
"text-transform": "uppercase",
"text-field": "{name_en}",
"text-font": ["DIN Offc Pro Bold", "Arial Unicode MS Bold"],
"text-letter-spacing": 0.15,
"text-max-width": 7,
"text-size": {"stops": [[4, 10], [6, 14]]}
},
"filter": [">=", "area", 80000],
"paint": {
"text-color": "#969696",
"text-halo-width": 2,
"text-halo-color": "rgba(0, 0, 0, 0.85)"
}
}
]
}
const view = {
container: 'map',
maxZoom: 10,
minZoom: 5,
zoom: 6.3,
center: [35, 31.9],
style: mapStyle,
hash: false
}
return <div>
<GLMap
view={view}
token='pk.eyJ1IjoieXV2YWRtIiwiYSI6ImNpaWRuaWFxazAwMTJ2b2tyZGRmaWpsNWYifQ.qf_V3CFP_NZtLjk5luNM4g' />
<Slider step={2} defaultValue={50} />
</div>
}
}
ReactDOM.render(<Map/>, document.getElementById('root'))
|