-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
163 lines (160 loc) · 7.54 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1" />
<!-- 6 Назва карти -->
<title>
Мастер-класс GitHub у Слобожанському НПП
</title>
<!-- Leaflet -->
<link rel="stylesheet" href="lib/leaflet/leaflet.css" />
<script src="lib/leaflet/leaflet.js"></script>
<script src="lib/leaflet-google-places-autocomplete-master/src/js/leaflet-gplaces-autocomplete.js"></script>
<link rel="stylesheet" href="lib/leaflet-google-places-autocomplete-master/src/css/leaflet-gplaces-autocomplete.css" />
<!-- AJAX, GOOGLE API -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA85rH-shSVGTftaXcECnFRT3LKfbpVg3w&libraries=places"></script>
<!-- Data Source -->
<script src="data/reg.geojson" ></script>
<!-- Стиль карти -->
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="header">
<h1 style="position: fixed; bottom: 0px; left: 25%; z-index: 9999; width: 50%; background-color: #cccccc; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);">GitHub у Слобожанському НПП</h1>
</div>
<div id="map"></div>
<script>
// Ініціюємо карту
var map = L.map('map');
// 39 Вказуємо межі ділянки відображення
var southWest = L.latLng(40.00, 20.00),
northEast = L.latLng(55.00, 43.00),
bounds = L.latLngBounds(southWest, northEast);
// 43 Вказуємо центральну точку відображення та рівень зближення
map.setView([49.03, 31.50],6);
map.setMaxBounds(bounds);
map.setMinZoom(5);
// 47 Підвантажуємо basemap
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibXlrb2xhLWtvenlyIiwiYSI6ImNpemNzeHBhaDAwNHkycW8wZm40OHptdTMifQ.6q-bTx4fwm9Ch-knzk1i3Q', {
maxZoom: 18,
attribution: '<a href="http://pzf.gis.kh.ua/">Слобожанський НПП</a> |' +
'© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors | ' +
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
id: 'mapbox.streets'
}).addTo(map);
// 55 Ініціюємо шар областей
var regionLayer
// 57 Функція виділення областей при наведенні
function highlightFeature(e){
var layer = e.target;
layer.setStyle(
{
weight: 3,
color: 'red',
fillColor: 'orange',
fillOpacity: 0.3
}
);
if(!L.Browser.ie && !L.Browser.opera){
layer.bringToBack();
}
};
// 72 Функція повернення до звичайного стилю коли курсор не наводиться на область
function resetHighlight(e){
regionLayer.resetStyle(e.target);
};
// 76 Функція приближення до обраної області
function zoomToFeature(e){
map.fitBounds(e.target.getBounds());
};
// 80 Вказуємо правила застосування попередніх функцій
function onEachFeatureReg(feature, layer) {
layer.on(
{
mouseover : highlightFeature,
mouseout : resetHighlight,
click : zoomToFeature
}
)
};
// 90 Вказуємо базовий стиль для шару областей
function regStyle(feature){
return {
fillColor: 'orange',
weight: 2,
fillOpacity: 0.1,
color: 'white',
dashArray: 3,
opacity: 0.6,
}
};
// 101 Додаємо шар областей
regionLayer = L.geoJson(reg, {
style: regStyle,
onEachFeature : onEachFeatureReg
}).addTo(map)
// 106 Правило відображення шару областей на різних рівнях зближення
map.on('zoomend ', function(e) {
if ( map.getZoom() > 7 ){ map.removeLayer( regionLayer )}
else if ( map.getZoom() <= 7 ){ map.addLayer( regionLayer )}
});
// 111 Функція відображення атрибутивної інформації у форматі pop-up
function onEachFeaturePointsPopup(feature, layer){
var popupContent = (feature.properties.name+'<br>'+'<br>'+
feature.properties.schedule+'<br>'+'<br>'+
'<a href="'+feature.properties.url+'">Офіційний сайт</a>'
);
layer.bindPopup(popupContent);
};
// 119 Вказуємо базовий стиль для шару точок
function pointStyle(feature){
return {
radius: 4,
fillColor: "green",
color: "blue",
weight: 1,
opacity: 0.6,
fillOpacity: 0.6
}
};
// 130 Додаємо шар точок
$.getJSON("data/cnap.geojson", function(response){
console.log("response", response);
var cnap = new L.geoJson(response,{
style: pointStyle,
pointToLayer: function (feature, latlng) {
var circle = L.circleMarker(latlng,pointStyle);
return circle;
},
onEachFeature: onEachFeaturePointsPopup,
}).addTo(map);
cnap.bringToFront();
});
// 144 Додаємо пошукову систему
new L.Control.GPlaceAutocomplete({
callback: function(location){
map.panTo([
location.geometry.location.lat(),
location.geometry.location.lng()
]);
map.fitBounds([
[location.geometry.viewport.getSouthWest().lat(),
location.geometry.viewport.getSouthWest().lng()],
[location.geometry.viewport.getNorthEast().lat(),
location.geometry.viewport.getNorthEast().lng()]
]);
}}).addTo(map);
</script>
</body>
</html>