-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest1.html
More file actions
36 lines (34 loc) · 945 Bytes
/
test1.html
File metadata and controls
36 lines (34 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
Simple Places Autocomplete
</title>
<script type="module" src="https://ajax.googleapis.com/ajax/libs/@googlemaps/extended-component-library/0.6.11/index.min.js">
</script>
<style>
body {
padding: 25px;
background-color: #f0f1f3;
font-family: "Arial", sans-serif;
}
#place-picker-box {
display: flex;
justify-content: center;
align-items: center;
}
#place-picker-container {
text-align: left;
}
</style>
</head>
<body>
<gmpx-api-loader key="AIzaSyBWz5umc3lrE4xUdfPviXY4monWFqX3edw" solution-channel="GMP_GE_placepicker_v2">
</gmpx-api-loader>
<div id="place-picker-box">
<div id="place-picker-container">
<gmpx-place-picker placeholder="Enter an address"></gmpx-place-picker>
</div>
</div>
</body>
</html>