-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathstructured-geocode.html
41 lines (39 loc) · 1.11 KB
/
structured-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
<!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>Structured geocode</h2>
<div id='structured-geocode'>
<script type='module'>
import apiKey from './apiKey.js'
import { prettifyJson } from './utils.js'
window.onload = async function() {
const node = document.getElementById('structured-geocode')
const Geocode = new Openrouteservice.Geocode({
api_key: apiKey
})
try {
const json = await Geocode.structuredGeocode({
locality: 'Heidelberg'
})
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>