Google Maps V3 -> Is it possible to get properties from Geojson using lat lng coordinates or other information from search box?
问题 I'm using an external geojson-file to add layers to my Google Map. This file contains two properties per area that I would like to access when searching. I can easily fetch the properties if the user clicks on an area or uses any of the other supported event handlers. https://developers.google.com/maps/documentation/javascript/datalayer#add_event_handlers this.map.data.addListener('mouseover', (event) => { console.log(event.feature.getProperty('VD')); }); However I would like to get what