-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmeasure.html
135 lines (120 loc) · 4.6 KB
/
measure.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
<!DOCTYPE html>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<html>
<head>
<meta http-equiv="Access-Control-Allow-Origin" content="*">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Measuring - Glenorchy City Council</title>
<script type="text/javascript" src="src/leaflet/leaflet.js"></script>
<link type="text/css" rel="stylesheet" href="src/leaflet/leaflet.css" />
<script src="src/listBaseLayers.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="src/leaflet/locate/L.Control.Locate.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/nps.css" />
<link rel="stylesheet" href="src/leaflet/gcc_geosearch/l.gcc_geosearch.css" />
<link rel="stylesheet" href="src/leaflet/draw/leaflet.draw.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" href="src/leaflet/locate/L.Control.Locate.ie.css" />
<link rel="stylesheet" href="src/leaflet/gcc_geosearch/l.gcc_geosearch.ie.css" />
<link rel="stylesheet" href="css/ie6.css" type="text/css" />
<link rel="stylesheet" href="src/leaflet/draw/leaflet.draw.ie.css" />
<![endif]-->
<script src="src/leaflet/gcc_geosearch/gcc_geosearch.js"></script>
<script src="src/leaflet/locate/L.Control.Locate.js"></script>
<script src="src/jquery/jquery-1.7.1.min.js"></script>
<script src="src/lib/proj4js-combined.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>
<script src="src/leaflet/draw/leaflet.draw.js"></script>
<script src="src/leaflet/gcc_draw.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
</body>
<script>
var center = new L.LatLng(-42.8232,147.2555);
var map = new L.Map('map', { center: center, zoom: 14, attributionControl:true, zoomControl:false});
var src = new Proj4js.Proj('EPSG:4326');
var dst = new Proj4js.Proj('EPSG:28355');
var baselayers = {
"LIST Aerial Imagery": LISTAerial,
"LIST Topographic": LISTTopographic
};
map.addLayer(LISTTopographic)
var gccAtt = '© Glenorchy City Council, <a href="http://creativecommons.org/licenses/by/3.0/au/">CC-BY</a>'
var drawnItems = new L.FeatureGroup();
map.addLayer(drawnItems);
// Set the title to show on the polygon button
L.drawLocal.draw.toolbar.buttons.polygon = 'Draw a polygon!';
var drawControl = new L.Control.Draw({
position: 'topright',
draw: {
polyline: {
shapeOptions: {
color: '#5C5DBF'
}
},
rectangle: {
shapeOptions: {
color: '#5C5DBF'
}
},
polygon: {
allowIntersection: false,
showArea: true,
drawError: {
color: '#F25567',
timeout: 1000
},
shapeOptions: {
color: '#5C5DBF'
}
},
circle: false
},
edit: false
});
map.addControl(drawControl);
map.on('draw:created', function (e) {updatePopup(e)});
map.on('draw:edited', function (e) {
var layers = e.layers;
var countOfEditedLayers = 0;
layers.eachLayer(function(layer) {
countOfEditedLayers++;
});
//console.log("Edited " + countOfEditedLayers + " layers");
});
//Location control
L.control.locate({
position: 'topright',
drawCircle: false,
follow: false
}).addTo(map);
//Zoom control
L.control.zoom().addTo(map);
//Layer control
L.control.layers(baselayers, {}, {position: 'topleft'}).addTo(map);
//Search control
L.control.searchControl().addTo(map);
</script>
<script type="text/javascript">
//Analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36489204-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</html>