-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
214 lines (213 loc) · 10.1 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css/leaflet.css"><link rel="stylesheet" href="css/L.Control.Locate.min.css">
<link rel="stylesheet" href="css/qgis2web.css"><link rel="stylesheet" href="css/fontawesome-all.min.css">
<link rel="stylesheet" href="css/leaflet-search.css">
<style>
html, body, #map {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
</style>
<title>April Service 2023</title>
</head>
<body>
<div id="map">
</div>
<script src="js/qgis2web_expressions.js"></script>
<script src="js/leaflet.js"></script><script src="js/L.Control.Locate.min.js"></script>
<script src="js/leaflet.rotatedMarker.js"></script>
<script src="js/leaflet.pattern.js"></script>
<script src="js/leaflet-hash.js"></script>
<script src="js/Autolinker.min.js"></script>
<script src="js/rbush.min.js"></script>
<script src="js/labelgun.min.js"></script>
<script src="js/labels.js"></script>
<script src="js/leaflet-search.js"></script>
<script src="data/MapData_1.js"></script>
<script>
var map = L.map('map', {
zoomControl:true, maxZoom:28, minZoom:1
}).fitBounds([[-33.84743704754882,115.05257512409044],[-33.5194766876573,115.70451251376248]]);
var hash = new L.Hash(map);
map.attributionControl.setPrefix('<a href="https://github.com/tomchadwin/qgis2web" target="_blank">qgis2web</a> · <a href="https://leafletjs.com" title="A JS library for interactive maps">Leaflet</a> · <a href="https://qgis.org">QGIS</a>');
var autolinker = new Autolinker({truncate: {length: 30, location: 'smart'}});
L.control.locate({locateOptions: {maxZoom: 19}}).addTo(map);
var bounds_group = new L.featureGroup([]);
function setBounds() {
}
map.createPane('pane_SatelliteMap_0');
map.getPane('pane_SatelliteMap_0').style.zIndex = 400;
var layer_SatelliteMap_0 = L.tileLayer('https://www.google.cn/maps/vt?lyrs=s@189&gl=cn&x={x}&y={y}&z={z}', {
pane: 'pane_SatelliteMap_0',
opacity: 1.0,
attribution: '',
minZoom: 1,
maxZoom: 28,
minNativeZoom: 0,
maxNativeZoom: 18
});
layer_SatelliteMap_0;
map.addLayer(layer_SatelliteMap_0);
function pop_MapData_1(feature, layer) {
var popupContent = '<table>\
<tr>\
<td colspan="2"><strong>Task</strong><br />' + (feature.properties['Task'] !== null ? autolinker.link(feature.properties['Task'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Asset_Number</th>\
<td>' + (feature.properties['Asset_Number'] !== null ? autolinker.link(feature.properties['Asset_Number'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Location</th>\
<td>' + (feature.properties['Location'] !== null ? autolinker.link(feature.properties['Location'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">FLOC</th>\
<td>' + (feature.properties['FLOC'] !== null ? autolinker.link(feature.properties['FLOC'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">NavAid_Name</th>\
<td>' + (feature.properties['NavAid_Name'] !== null ? autolinker.link(feature.properties['NavAid_Name'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Chart_Character</th>\
<td>' + (feature.properties['Chart_Character'] !== null ? autolinker.link(feature.properties['Chart_Character'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Flash_Sequence</th>\
<td>' + (feature.properties['Flash_Sequence'] !== null ? autolinker.link(feature.properties['Flash_Sequence'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Light_Range</th>\
<td>' + (feature.properties['Light_Range'] !== null ? autolinker.link(feature.properties['Light_Range'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Battery Age</th>\
<td>' + (feature.properties['Battery Age'] !== null ? autolinker.link(feature.properties['Battery Age'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Water Depth</th>\
<td>' + (feature.properties['Water Depth'] !== null ? autolinker.link(feature.properties['Water Depth'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Northing</th>\
<td>' + (feature.properties['Northing'] !== null ? autolinker.link(feature.properties['Northing'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Easting</th>\
<td>' + (feature.properties['Easting'] !== null ? autolinker.link(feature.properties['Easting'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">UTM_Zone</th>\
<td>' + (feature.properties['UTM_Zone'] !== null ? autolinker.link(feature.properties['UTM_Zone'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Latitude</th>\
<td>' + (feature.properties['Latitude'] !== null ? autolinker.link(feature.properties['Latitude'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<th scope="row">Longitude</th>\
<td>' + (feature.properties['Longitude'] !== null ? autolinker.link(feature.properties['Longitude'].toLocaleString()) : '') + '</td>\
</tr>\
</table>';
layer.bindPopup(popupContent, {maxHeight: 400});
}
function style_MapData_1_0(feature) {
switch(String(feature.properties['q2wHide_Status'])) {
case 'Additional':
return {
pane: 'pane_MapData_1',
radius: 6.0,
opacity: 1,
color: 'rgba(35,35,35,1.0)',
dashArray: '',
lineCap: 'butt',
lineJoin: 'miter',
weight: 1,
fill: true,
fillOpacity: 1,
fillColor: 'rgba(251,163,10,1.0)',
interactive: true,
}
break;
default:
return {
pane: 'pane_MapData_1',
radius: 4.0,
opacity: 1,
color: 'rgba(35,35,35,1.0)',
dashArray: '',
lineCap: 'butt',
lineJoin: 'miter',
weight: 1,
fill: true,
fillOpacity: 1,
fillColor: 'rgba(236,251,23,1.0)',
interactive: true,
}
break;
}
}
map.createPane('pane_MapData_1');
map.getPane('pane_MapData_1').style.zIndex = 401;
map.getPane('pane_MapData_1').style['mix-blend-mode'] = 'normal';
var layer_MapData_1 = new L.geoJson(json_MapData_1, {
attribution: '',
interactive: true,
dataVar: 'json_MapData_1',
layerName: 'layer_MapData_1',
pane: 'pane_MapData_1',
onEachFeature: pop_MapData_1,
pointToLayer: function (feature, latlng) {
var context = {
feature: feature,
variables: {}
};
return L.circleMarker(latlng, style_MapData_1_0(feature));
},
});
bounds_group.addLayer(layer_MapData_1);
map.addLayer(layer_MapData_1);
setBounds();
var i = 0;
layer_MapData_1.eachLayer(function(layer) {
var context = {
feature: layer.feature,
variables: {}
};
layer.bindTooltip((layer.feature.properties['Asset_Number'] !== null?String('<div style="color: #e6d812; font-size: 10pt; font-family: \'Open Sans\', sans-serif;">' + layer.feature.properties['Asset_Number']) + '</div>':''), {permanent: true, offset: [-0, -16], className: 'css_MapData_1'});
labels.push(layer);
totalMarkers += 1;
layer.added = true;
addLabel(layer, i);
i++;
});
map.addControl(new L.Control.Search({
layer: layer_MapData_1,
initial: false,
hideMarkerOnCollapse: true,
propertyName: 'Asset_Number'}));
document.getElementsByClassName('search-button')[0].className +=
' fa fa-binoculars';
resetLabels([layer_MapData_1]);
map.on("zoomend", function(){
resetLabels([layer_MapData_1]);
});
map.on("layeradd", function(){
resetLabels([layer_MapData_1]);
});
map.on("layerremove", function(){
resetLabels([layer_MapData_1]);
});
</script>
</body>
</html>