I am trying to get an event called on map drag or I want to get lat and lon whenever the center of the map change. I am using cordova-plugin-googlemaps which provides native api for google maps.
map.on(plugin.google.maps.event.CAMERA_CHANGE, function(latLng) {
alert("Map is dragging.\n");});
This does not work. Although events like MAP_CLICK does.