forked from olefirenko/vue-google-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.2/css/bulma.min.css" />
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCe1exctmeJjIb4guyT6newSpyJ7kA3aLc&libraries=places"></script>
</head>
<body>
<section class="hero is-medium is-primary is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title is-2">Vue Google Autocomplete</h1>
<h2 class="subtitle">A Vue.js autosuggest component for the Google Maps Places API</h2>
</div>
</div>
</section>
<section class="hero">
<div class="hero-body">
<div class="container" id="app">
<h3 class="title is-4">Start typing an address and below you will see found result,
<a v-on:click="$refs.address.geolocate()">or force current location</a>
</h3>
<p class="control">
<vue-google-autocomplete
id="map"
ref="address"
classname="input"
placeholder="Start typing"
v-on:placechanged="getAddressData"
v-on:error="handleError"
country="sg"
>
</vue-google-autocomplete>
</p>
<div class="message is-success" v-show="address">
<div class="message-body">{{ address }}</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content">
<p>
<a href="https://github.com/olefirenko/vue-google-autocomplete">View project on GitHub</a>
</p>
</div>
</div>
</footer>
<script src="../dist/app.js"></script>
</body>
</html>