forked from vporwal/maps-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartworks.html
142 lines (126 loc) · 5.9 KB
/
artworks.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
<!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>Artworks - 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>
<script src="src/leaflet/gcc_config.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/cluster/MarkerCluster.css" />
<link rel="stylesheet" href="src/leaflet/cluster/MarkerCluster.Default.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/cluster/MarkerCluster.Default.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="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>
<script src="src/leaflet/cluster/leaflet.markercluster.js"></script>
<script src="src/leaflet/leaflet.spin.js"></script>
<script src="src/leaflet/spin.min.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, minZoom:11});
var baselayers = {
"LIST Aerial Imagery": LISTAerial,
"LIST Topographic": LISTTopographic
};
map.addLayer(LISTTopographic)
//Location control
L.control.locate({
position: 'topright',
drawCircle: false,
follow: false
}).addTo(map);
//Zoom control
L.control.zoom().addTo(map);
//Layer control
//Search control
L.control.searchControl().addTo(map);
var query = "SELECT * from 1HvAi__NHaSRa2loeuueRNLlKmqqF3piZRxeF-mo";
var encodedQuery = encodeURIComponent(query);
// Construct the URL
var url = ['https://data.gov.au/geoserver/glenorchy-city-council-artworks/wfs?request=GetFeature&typeName=04483003_abe7_4501_a0c1_5e89c4d68e5d&outputFormat=json'];
// Send the JSONP request using jQuery
var allMarkers = new L.MarkerClusterGroup();
var overlays = {
"Artworks": allMarkers
};
L.control.layers(baselayers, overlays, {position: 'topleft'}).addTo(map);
function definePopup(entry) {
var popupText = "test";
return popupText;
}
map.spin(true);
var art = null;
$.ajax({
url: url.join(''),
dataType: 'json',
success: function (data) {
art = data;
mtbp = L.geoJson(data, {
onEachFeature: function (feature, layer) {
popupOptions = {maxWidth: 200};
var artists = ""
if(feature.properties.artist_1 !== undefined && feature.properties.artist_1 !== null) {artists = feature.properties.artist_1}
if(feature.properties.artist_2 !== undefined && feature.properties.artist_2 !== null) {artists = artists + ", " + feature.properties.artist_2}
if(feature.properties.artist_3 !== undefined && feature.properties.artist_3 !== null) {artists = artists + ", " + feature.properties.artist_3}
if(feature.properties.artist_4 !== undefined && feature.properties.artist_4 !== null) {artists = artists + ", " + feature.properties.artist_4}
if(feature.properties.artist_5 !== undefined && feature.properties.artist_5 !== null) {artists = artists + ", " + feature.properties.artist_5}
if(feature.properties.artist_6 !== undefined && feature.properties.artist_6 !== null) {artists = artists + ", " + feature.properties.artist_6}
layer.bindPopup("<b>Name: </b>"+feature.properties.name+"<br>"+
"<b>Description: </b>"+feature.properties.description+"<br>"+
"<b>Full Details: </b>"+feature.properties.full_details+"<br>"+
"<b>Location: </b>"+feature.properties.location_address+" "+feature.properties.location_desc+"<br>"+
"<b>Year: </b>"+feature.properties.year+"<br>"+
"<b>Artists: </b>"+artists+"<br>"
,popupOptions);
}
})
allMarkers.addLayer(mtbp).addTo(map);
}
})
.done(function() {
map.spin(false);
})
.error(function () {
map.spin(false);
});
map.addLayer(allMarkers);
</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>