| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | import {Basemap} from "../Leaflet/Basemap"; | 
					
						
							|  |  |  | 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)) { | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const b = State.state.bm.map.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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |