Various fixes for bot

This commit is contained in:
Pieter Vander Vennet 2022-05-21 01:02:03 +02:00
parent 25c33d557d
commit bd03a5a76a
3 changed files with 84 additions and 39 deletions

View file

@ -5,7 +5,8 @@ import {BBox} from "../BBox";
export interface GeoCodeResult {
display_name: string,
lat: number, lon: number, boundingbox: number[],
osm_type: string, osm_id: string
osm_type: "node" | "way" | "relation",
osm_id: string
}
export class Geocoding {