-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 2.55 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
<!DOCTYPE html>
<!--
@license
Copyright 2019 Google LLC. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
-->
<html>
<head>
<title>Add Map</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<link rel="stylesheet" type="text/css" href="./style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin=""
/>
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&family=Poppins:wght@100;200;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Ubuntu:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.css"
/>
<link rel="stylesheet" href="/css/style.css" />
<script
defer
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""
></script>
<script
defer
src="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.js"
></script>
<script type="module" src="/js/index.js"></script>
</head>
<body>
<div class="container">
<div class="helper">
<h3 class="head-title">Google Maps Helper</h3>
<p class="helper-paragragh">
You can always call for help during emergencies <br />
so we can help you locate the nearest <br />
Police Station, Hospital, Bus Stop, etc.
</p>
<form class="helper-form">
<div class="address-div">
<!-- <input
class="address-input"
placeholder="Please Enter Your Current Address"
/> -->
<select class="address-input--">
<option>Hospital</option>
<option>Police</option>
<option>Fire</option>
</select>
<button class="help-btn">HELP!!!</button>
</div>
</form>
</div>
<div id="map"></div>
</div>
<!-- <script
async
defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyANju-0rURjpzrd7cgN54atuefazRE1qxk&callback=myclass.initMap"
></script> -->
</body>
</html>