-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.html
48 lines (36 loc) · 1.23 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="what3words.js"></script>
<title>What3words Demo</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
text-align: center;
width: 800px;
height: 500px;
margin: 0 auto;
}
#map {
margin: auto;
width: 100%;
height:100%;
padding: 10px;
}
#pac-input {
text-align: center;
}
</style>
</head>
<body>
<input id="pac-input" class="controls" type="text" placeholder="Enter Address">
<div id="map"></div>
<div id="current" class="text-center">Move The marker around</div>
<input id="three-word" type="hidden" name="attributes[What 3 words]">
<img width="150px" margin="auto" src="what3words_logo_final.png"/>
<script src='what3words-map-marker.js'></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOURAPIKEY&libraries=places&callback=initMap" async defer></script>
</body>
</html>