| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  | import State from "../../State" | 
					
						
							|  |  |  | import { Utils } from "../../Utils" | 
					
						
							|  |  |  | import { BBox } from "../BBox" | 
					
						
							| 
									
										
										
										
											2022-04-28 00:28:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export interface GeoCodeResult { | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |     display_name: string | 
					
						
							|  |  |  |     lat: number | 
					
						
							|  |  |  |     lon: number | 
					
						
							|  |  |  |     boundingbox: number[] | 
					
						
							|  |  |  |     osm_type: "node" | "way" | "relation" | 
					
						
							| 
									
										
										
										
											2022-05-21 01:02:03 +02:00
										 |  |  |     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 { | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |     private static readonly host = "https://nominatim.openstreetmap.org/search?" | 
					
						
							| 
									
										
										
										
											2020-07-01 02:12:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 00:28:04 +02:00
										 |  |  |     static async Search(query: string): Promise<GeoCodeResult[]> { | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |         const b = State?.state?.currentBounds?.data ?? BBox.global | 
					
						
							|  |  |  |         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()}` + | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             "&accept-language=nl&q=" + | 
					
						
							|  |  |  |             query | 
					
						
							|  |  |  |         return Utils.downloadJson(url) | 
					
						
							| 
									
										
										
										
											2020-07-01 02:12:33 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } |