-
Notifications
You must be signed in to change notification settings - Fork 35
/
pois.html
49 lines (47 loc) · 1.3 KB
/
pois.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
<!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>POIs</h2>
<div id='pois'>
<script type='module'>
import apiKey from './apiKey.js'
import { prettifyJson } from './utils.js'
window.onload = async function() {
const node = document.getElementById('pois')
const Pois = new Openrouteservice.Pois({
api_key: apiKey
})
try {
const json = await Pois.pois({
geometry: {
bbox: [[8.8034, 53.0756], [8.7834, 53.0456]],
geojson: {
type: 'Point',
coordinates: [8.8034, 53.0756]
},
buffer: 250
},
timeout: 20000
})
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>Response</h3><p>' + response + '</p>'
}
}
</script>
</div>
</section>
</div>
</body>
</html>