-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
55 lines (52 loc) · 3.22 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
<!DOCTYPE html>
<html>
<head>
<title>Glenorchy City Council GIS</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>
<link type="text/css" rel="stylesheet" href="src/leaflet/leaflet.css" />
<script type="text/javascript" src="src/leaflet/leaflet.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed" data-tap-toggle="false" data-fullscreen="false">
<h1>Glenorchy City Council GIS</h1>
</div><!-- /header -->
<div data-role="content">
<div class="content-secondary">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c"><a href="maps.html" data-transition="slide">Maps</a></li>
<li data-theme="c"><a href="data.html" data-transition="slide">Data</a></li>
<li data-theme="c"><a href="services.html" data-transition="slide">Web Services</a></li>
<li data-theme="c"><a href="licensing.html" data-transition="slide">Licensing</a></li>
<li data-theme="c"><a href="contact.html" data-transition="pop" data-rel="dialog">Contact us</a></li>
</ul>
</div>
<div class="content-primary">
<h1>Glenorchy City Council's GIS Mapping and Data</h1>
<p>This website is the beginnings of a place where you can view maps and access data that the Council look after.</p>
<p>Although only beginning, please take the time to look around and drop us an email if you like it, or even if you don't. The only way it will get better is with your feedback and through requests. Please <a href="contact.html" data-transition="pop" data-rel="dialog">contact us</a>.
<h2>Licensing</h2>
<p>To read about the license under which we share information, see here: <a href=/licensing.html>Glenorchy City Council GIS data licensing.</a> but essentially all data available through this website via vector based <a href="./services.html" data-transition="slide">web services</a> is available under the <a href=http://creativecommons.org/licenses/by/3.0/au/>Creative Commons Attribution 3.0 Australia licence</a>.
There may be some basemaps that use state government data, but that data will not be available via feature based web services.</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>