-
Notifications
You must be signed in to change notification settings - Fork 4
/
cheshire2016.html
104 lines (92 loc) · 4.42 KB
/
cheshire2016.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
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bikemapcode</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- load Bootstrap CSS for mobile devices -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Load Leaflet from a https CDN, not http. Look for updates at http://leafletjs.com/download.html -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- load jQuery -->
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<!-- Load Esri Leaflet -->
<script src="https://cdn.jsdelivr.net/leaflet.esri/2.0.2/esri-leaflet.js"></script>
<!-- load Font-Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- load Leaflet.locatecontrol -->
<script src="https://cdn.jsdelivr.net/leaflet.locatecontrol/0.52.0/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/leaflet.locatecontrol/0.52.0/L.Control.Locate.min.css"/>
<!-- load Leaflet-plugins to read GPX and KML -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-plugins/1.9.0/layer/vector/GPX.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-plugins/1.9.0/layer/vector/KML.min.js"></script>
<!-- Load leaflet-geocoder to search locations-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.6.3/leaflet-geocoder-mapzen.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.6.3/leaflet-geocoder-mapzen.js"></script>
<!-- load distance markers with geometry from local directory; see also style.css -->
<!-- <script src="src/leaflet.geometryutil.js" type="text/javascript"></script>
<script src="src/leaflet-distance-marker.js" type="text/javascript"></script> -->
<!-- load leaflet-sidebar from local directory -->
<link rel="stylesheet" href="src/L.Control.Sidebar.css" />
<script src="src/L.Control.Sidebar.js"></script>
<!-- load custom css -->
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="map"></div>
<script>
var map = L.map('map', {
center: [41.53, -72.910],
zoom: 13,
zoomControl: false, // add later to reposition
scrollWheelZoom: false
});
map.attributionControl
.setPrefix("View <a href='http://github.com/jackdougherty/bikemapcode'>code on GitHub</a>, made with <a href='http://leafletjs.com' title='A JS library for interactive maps'>Leaflet</a>");
var controlLayers = L.control.layers( null, null, {
position: "topleft",
collapsed: false
}).addTo(map);
new L.control.zoom({position: "topleft",}).addTo(map);
L.control.scale().addTo(map);
/* BASELAYER */
var lightAll = new L.tileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="http://cartodb.com/attributions">CartoDB</a>'
}).addTo(map);
/* OVERLAYS */
function getColor(d) {
return d == "trail" ? 'green' :
d == "road" ? 'blue' :
'red';
}
function style(feature) {
return {
color: getColor(feature.properties.type),
weight: 3,
};
}
function onEachFeature(feature, layer) {
var popupText = "Route: " + feature.properties.name
+ "<br>Mileage: " + feature.properties.mileage;
layer.bindPopup(popupText);
}
$.getJSON("routes/ECG-Cheshire-4mile-2016.geojson", function (data){
var geoJsonLayer = L.geoJson(data, {
style: style,
onEachFeature: onEachFeature
}).addTo(map);
controlLayers.addOverlay(geoJsonLayer, 'ECG new Cheshire trail (green)');
});
$.getJSON("routes/ECG-2014.geojson", function (data){
var geoJsonLayer = L.geoJson(data, {
style: style,
onEachFeature: onEachFeature
}).addTo(map);
controlLayers.addOverlay(geoJsonLayer, 'ECG existing route (red)');
});
</script>
</body>
</html>