mapcomplete/Logic/Osm/Geocoding.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
797 B
TypeScript
Raw Normal View History

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=" +
`${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
}
}