-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (53 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
.data {
white-space: pre;
}
</style>
</head>
<body>
<div>
<h2>Example usage</h2>
<h3>With Postcode:</h3>
<a href="https://sheltered-dawn-83931.herokuapp.com/search/SW1A%202AA">
https://sheltered-dawn-83931.herokuapp.com/search/SW1A%202AA
</a>
<h3>With Address</h3>
<a href="https://sheltered-dawn-83931.herokuapp.com/search/10%20downing%20street%20london">
https://sheltered-dawn-83931.herokuapp.com/search/10%20downing%20street%20london
</a>
<h2>Example output</h2>
<code class="data">
{
status: "OK",
search: "10 downing street london",
location: {
addressNumber: "10",
addressStreet: "Downing Street",
city: "London",
postcode: "SW1A 2AA",
lat: 51.5033635,
lng: -0.1276248,
serviceArea: [
"LONCENTRAL"
]
}
}
</code>
<h3>Unknown Address:</h3>
<a href="https://sheltered-dawn-83931.herokuapp.com/search/abcdef123456">
https://sheltered-dawn-83931.herokuapp.com/search/abcdef123456
</a>
<h2>Example output</h2>
<code class="data">
{
status: "NOT_FOUND",
search: "abcdef123456"
}
</code>
</div>
</body>
</html>