我试图在地图拖动时调用一个事件,或者我希望每当地图中心发生变化时都会得到lat和lon。我正在使用cordova-plugin-googlemaps,它为谷歌地图提供原生api。
map.on(plugin.google.maps.event.CAMERA_CHANGE, function(latLng) {
alert("Map is dragging.\n");});
这不起作用。虽然像MAP_CLICK这样的事件可以。
见下面的答案
var mapdiv = document.getElementById('location-map');
var map = plugin.google.maps.Map.getMap(mapdiv);
var marker = map.addMarker({
position : {
lat : latitude,
lng : longitude,
},
animation : plugin.google.maps.Animation.DROP,
title : 'Lat : ' +latitude+ ', Lng : ' +longitude
});
marker.setDraggable(true);
marker.showInfoWindow();
marker.addEventListener(plugin.google.maps.event.MARKER_DRAG_END, function(point) {
marker.setTitle('Lat : ' +point.lat+ ', Lng : ' +point.lng);
marker.showInfoWindow();
});
在https://github.com/mapsplugin/cordova-plugin-googlemaps上查找更多详情