-
Notifications
You must be signed in to change notification settings - Fork 35
/
reverse-geocode.html
46 lines (43 loc) · 1.21 KB
/
reverse-geocode.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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>ORS-js lib examples</title>
<script type='module' src='../dist/ors-js-client.js'></script>
</head>
<body>
<div>
<h1>ORS-js lib examples</h1>
<section>
<h2>Reverse geocode</h2>
<div id='reverse-geocode'>
<script type='module'>
import apiKey from './apiKey.js'
import { prettifyJson } from './utils.js'
window.onload = async function() {
const node = document.getElementById('reverse-geocode')
const Geocode = new Openrouteservice.Geocode({
api_key: apiKey
})
try {
const json = await Geocode.reverseGeocode({
point: {
lat_lng: [49.412388, 8.681247],
radius: 50
},
boundary_country: ['DE']
})
console.log(json)
let response = prettifyJson(json)
node.innerHTML = '<h3>Response</h3><p>' + response + '</p>'
} catch (err) {
console.error(err)
let response = prettifyJson(err)
node.innerHTML = '<h3>Error</h3><p>' + response + '</p>'
}
}
</script>
</div>
</section>
</div>
</body>
</html>