I am trying to record the lat/long data from user click. JS can do it with something like:
google.maps.event.addListener(map, 'click', function(event) {placeMarker(map, event.latLng, marker);});
How can i pass the this "event.latLng" to the flask? Can we add this api to flask_googlemaps?
I am trying to record the lat/long data from user click. JS can do it with something like: google.maps.event.addListener(map, 'click', function(event) {placeMarker(map, event.latLng, marker);});
How can i pass the this "event.latLng" to the flask? Can we add this api to flask_googlemaps?