-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexMousePoint.html
78 lines (66 loc) · 1.78 KB
/
indexMousePoint.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.39.1/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.39.1/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<style type='text/css'>
#info {
display: block;
position: relative;
margin: 0px auto;
width: 50%;
padding: 10px;
border: none;
border-radius: 3px;
font-size: 12px;
text-align: center;
color: #222;
background: #fff;
}
.marker {
background-image: url('mapbox-icon.png');
background-size: cover;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
}
</style>
<div id='map'></div>
<pre id='info'>
<button onclick="printConsole();">GET</button></pre>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoidmEycm9uMSIsImEiOiJjaXUxamJtdTYwYm5wMm9xdGphenNzNG1rIn0.TkfC4X1IMO60kPDC1J4IAg';
var map = new mapboxgl.Map({
container: 'map', // container id
style: 'mapbox://styles/mapbox/streets-v9',
center: [-66.15484111480603, 18.401526049883], // starting position
zoom: 9 // starting zoom
});
var s = '{';
map.on('click', function (e) {
var j = e.lngLat;
s += '[' + j.lng +',' + j.lat +'],';
var el = document.createElement('div');
el.className = 'marker';
// make a marker for each feature and add to the map
new mapboxgl.Marker(el, {})
.setLngLat(e.lngLat)
.addTo(map);
});
//s = '}';
function printConsole(){
console.log(s + "}");
}
</script>
</body>
</html>