-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpoints.html
75 lines (55 loc) · 3.89 KB
/
points.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
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css" />
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_0f0a56c2fc1c4449a46902fd701dece1 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_0f0a56c2fc1c4449a46902fd701dece1" ></div>
</body>
<script>
var bounds = null;
var map_0f0a56c2fc1c4449a46902fd701dece1 = L.map(
'map_0f0a56c2fc1c4449a46902fd701dece1',
{center: [52,5.7],
zoom: 6,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_0b935dab3d45405981809955b6d60c03 = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_0f0a56c2fc1c4449a46902fd701dece1);
var geo_json_2c1067e300c648ef9577ef1c7fac39b1 = L.geoJson(
{"crs": {"properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}, "type": "name"}, "features": [{"geometry": {"coordinates": [4.89707, 52.377956], "type": "Point"}, "properties": {"FID": 0, "highlight": {}, "style": {"color": "black", "fillColor": "blue", "fillOpacity": 0.6, "opacity": 1, "weight": 1}}, "type": "Feature"}, {"geometry": {"coordinates": [5.10448, 52.092876], "type": "Point"}, "properties": {"FID": 1, "highlight": {}, "style": {"color": "black", "fillColor": "blue", "fillOpacity": 0.6, "opacity": 1, "weight": 1}}, "type": "Feature"}, {"geometry": {"coordinates": [5.6909725, 50.85136819999999], "type": "Point"}, "properties": {"FID": null, "highlight": {}, "style": {"color": "black", "fillColor": "blue", "fillOpacity": 0.6, "opacity": 1, "weight": 1}}, "type": "Feature"}], "type": "FeatureCollection"}
).addTo(map_0f0a56c2fc1c4449a46902fd701dece1);
geo_json_2c1067e300c648ef9577ef1c7fac39b1.setStyle(function(feature) {return feature.properties.style;});
</script>