-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·51 lines (47 loc) · 2.23 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Melbourne open data</title>
<meta name="description" content="">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<!-- <link href='https://api.mapbox.com/mapbox-gl-js/v0.30.0/mapbox-gl.css' rel='stylesheet' /> -->
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.js'></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<body>
<div id="features"></div>
<div id="mapcontainer">
<div id="map">
</div>
<div id="mapoverlay">
<div id="caption">
<h1>Loading data...</h1>
<!-- <a id="source" href="https://data.melbourne.vic.gov.au/Economy/Cafes-and-Restaurants-only/sfrg-zygb/data">Source: City of Melbourne Open Data</a><br> -->
<span id="share"></span><br>
<small id="loading">Loading data...</small>
</div>
<div id="legends">
<div id="legend-enum" class="legend"> </div>
<div id="legend-numeric" class="legend"></div>
</div>
<div id="footer">
<div class="dataset"></div>
<div class="url">data.melbourne.vic.gov.au</div>
</div>
<div id="logo"></div>
</div>
</div>
<link rel="stylesheet" href="assets/styles/styles.css?v=1.0.0">
<!-- https://varvy.com/pagespeed/defer-loading-javascript.html -->
<script type="text/javascript">
window.addEventListener("load", function() {
var element = document.createElement("script");
element.src = "assets/scripts/App.js?v=1.0.0";
document.body.appendChild(element);
}, false);
</script>
</body>
</html>