2020-07-30 00:59:08 +02:00
|
|
|
import $ from "jquery"
|
2020-10-02 19:00:24 +02:00
|
|
|
import State from "../../State";
|
2020-07-01 02:12:33 +02:00
|
|
|
export class Geocoding {
|
|
|
|
|
|
|
|
private static readonly host = "https://nominatim.openstreetmap.org/search?";
|
|
|
|
|
2020-07-01 21:21:29 +02:00
|
|
|
static Search(query: string,
|
|
|
|
handleResult: ((places: { display_name: string, lat: number, lon: number, boundingbox: number[] }[]) => void),
|
|
|
|
onFail: (() => void)) {
|
2021-01-02 21:03:40 +01:00
|
|
|
const b = State.state.leafletMap.data.getBounds();
|
2020-07-01 21:21:29 +02:00
|
|
|
console.log(b);
|
2020-07-01 02:12:33 +02:00
|
|
|
$.getJSON(
|
2020-07-01 21:21:29 +02:00
|
|
|
Geocoding.host + "format=json&limit=1&viewbox=" +
|
|
|
|
`${b.getEast()},${b.getNorth()},${b.getWest()},${b.getSouth()}`+
|
|
|
|
"&accept-language=nl&q=" + query,
|
2020-07-01 02:12:33 +02:00
|
|
|
function (data) {
|
2020-07-01 21:21:29 +02:00
|
|
|
handleResult(data);
|
|
|
|
}).fail(() => {
|
|
|
|
onFail();
|
|
|
|
});
|
2020-07-01 02:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|