-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (72 loc) · 2.97 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BEE?</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
<link id="stylesheet" rel="stylesheet" href="styles.css">
<!--For Leaflet-->
<!-----Leaflet Hosted
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
--->
<link rel="stylesheet" href="./js/Leaflet/leaflet.css" />
<script src="./js/Leaflet/leaflet.js"></script>
<!---->
<!--For Google Maps Api-->
<!--
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
-->
<!--Here Maps Api-->
<script src="https://js.api.here.com/v3/3.0/mapsjs-core.js" type="text/javascript" charset="utf-8"></script>
<script src="https://js.api.here.com/v3/3.0/mapsjs-service.js" type="text/javascript" charset="utf-8"></script>
<script src="https://js.api.here.com/v3/3.0/mapsjs-places.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="title" class="row">
<div id="leftPanel" class="col-3"></div>
<div id="titleTextContainer" class="col-6">
<h1>
<span>Where to</span>
<span id="textBee" class="basicTitle">BEE</span>
<span>?</span>
</h1>
</div>
<div class="col-3 hiddenOnMobile"></div>
</div>
<div id="getLocationButtonRow" class="row">
<div class="col-4"></div>
<div class="col-4">
<button id='getLocationButton' class="button">
<span>Get my location</span>
</button>
</div>
<div class="col-4"></div>
</div>
<div id="yourLocationRow" class="row">
<div class="col-1 hiddenOnMobile"></div>
<div id="addressColumn" class="col-6">
<p id="textPlusAddress">
<span id="yourLocationText">Your location: </span>
<span id="yourAddress"></span>
</p>
</div>
<div class="col-5 hiddenOnMobile"></div>
</div>
<div id="placesAndMapSection" class="row hidden">
<div class="col-1 hiddenOnMobile"></div>
<div class="col-6" id="placesList"></div>
<div class="col-1 hiddenOnMobile"></div>
<div id="mapContainer" class="col-3"></div>
<div class="col-1"></div>
</div>
</body>
<script src="js/appHere.js"></script>
</html>