-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathmaps.html
More file actions
62 lines (62 loc) · 3.73 KB
/
maps.html
File metadata and controls
62 lines (62 loc) · 3.73 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Glenorchy City Council Maps</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="css/jqm-custom.css" />
<script src="src/jquery/jquery-1.7.1.min.js"></script>
<script src="src/jquery/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed" data-tap-toggle="false" data-fullscreen="false">
<a href="index.html" data-icon="home" data-iconpos="notext" data-direction="reverse" data-transition='slide'>Home</a>
<h1>Glenorchy City Council GIS</h1>
</div><!-- /header -->
<div data-role="content">
<div class="content-primary">
<ul data-role="listview" data-divider-theme="b" data-inset="true" data-filter="true">
<!--<li data-theme="a">Planning</li>
<li><a href="ips_gcc.html" rel="external">GCC Draft Interim Planning Scheme</a></li>-->
<li data-theme="a">Overview</li>
<li><a href="municipal_map.html" rel="external">Municipal Map</a></li>
<li data-theme="a">Assets</li>
<li><a href="undergroundassets.html" rel="external">All Underground Assets, including Redundant Town Gas</a></li>
<li><a href="stormwater.html" rel="external">Stormwater</a></li>
<li><a href="powergas.html" rel="external">Power/Gas (GCC and Redundant Town Gas)</a></li>
<li><a href="watersewer.html" rel="external">Water/Sewer (GCC)</a></li>
<!--<li><a href="StormwaterLIST.html" rel="external">Stormwater (LIST Basemap)</a></li>-->
<li data-theme="a">Community</li>
<li><a href="3dbuildings.html" rel="external">3D Buildings</a></li>
<li><a href="dogexerciseareas.html" rel="external">Dog Exercise Areas</a></li>
<li><a href="graffiti.html" rel="external">Graffiti Incidents</a></li>
<li><a href="http://a.tiles.mapbox.com/v3/alexgleith.map-m2406w0i/page.html" rel="external">Graffiti Density</a></li>
<li><a href="glenorchy_mtbp.html" rel="external">Glenorchy Mountain Bike Park</a></li>
<li data-theme="a">Tools</li>
<li><a href="measure.html" rel="external">Measurement Tools</a></li>
</ul>
</div>
<div class="content-secondary">
<h1>Maps</h1>
<p>Select a map from the list. Type into the box to narrow down the list.</p>
<p>For enquiries regarding the maps or data contained in them please <a href="contact.html" data-transition="pop" data-rel="dialog">contact GCC GIS.</a></p>
<p>You can view maps of Tasmania at <a href="http://maps.thelist.tas.gov.au">The LIST</a>, but maps particular to Glenorchy are available here. Most of the maps available on this page incorporate open data, which is data that you can use for your work or in another web site. Datasets that are available for download or live use are listed on the <a href="https://maps.gcc.tas.gov.au/data.html">open data and metadata page</a>.</p>
</div>
</div><!-- /content -->
<div data-role="footer" class="footer" data-theme="c" data-position="fixed">
<p>© 2013 Glenorchy City Council <a href="http://creativecommons.org/licenses/by/3.0/au/"><img src="/images/CCBY_88x31.png" align="right"></a></p>
</div>
</div><!-- /page -->
<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>