2020-10-02 19:00:24 +02:00
|
|
|
import State from "../../State"
|
2021-07-03 22:24:12 +02:00
|
|
|
import { Utils } from "../../Utils"
|
2022-04-28 00:28:04 +02:00
|
|
|
import { BBox } from "../BBox"
|
|
|
|
|
|
|
|
export interface GeoCodeResult {
|
|
|
|
display_name: string
|
|
|
|
lat: number
|
|
|
|
lon: number
|
|
|
|
boundingbox: number[]
|
2022-05-21 01:02:03 +02:00
|
|
|
osm_type: "node" | "way" | "relation"
|
|
|
|
osm_id: string
|
2022-04-28 00:28:04 +02:00
|
|
|
}
|
2021-07-03 22:24:12 +02:00
|
|
|
|
2020-07-01 02:12:33 +02:00
|
|
|
export class Geocoding {
|
|
|
|
private static readonly host = "https://nominatim.openstreetmap.org/search?"
|
|
|
|
|
2022-04-28 00:28:04 +02:00
|
|
|
static async Search(query: string): Promise<GeoCodeResult[]> {
|
|
|
|
const b = State?.state?.currentBounds?.data ?? BBox.global
|
2021-07-03 22:24:12 +02:00
|
|
|
const url =
|
|
|
|
Geocoding.host +
|
|
|
|
"format=json&limit=1&viewbox=" +
|
2021-09-09 00:05:51 +02:00
|
|
|
`${b.getEast()},${b.getNorth()},${b.getWest()},${b.getSouth()}` +
|
2021-07-03 22:24:12 +02:00
|
|
|
"&accept-language=nl&q=" +
|
|
|
|
query
|
2022-04-28 00:28:04 +02:00
|
|
|
return Utils.downloadJson(url)
|
2020-07-01 02:12:33 +02:00
|
|
|
}
|
|
|
|
}
|