我为 gmaps 使用 jquery-UI-map,当我单击 Gmaps 上的地图时,我想弹出窗口。
$(function() {
$('#map_canvas').gmap( {'center': new google.maps.LatLng(-0.789275, 113.921327), 'callback': function(map) {
$(map).click( function(event) {
$('#map_canvas').gmap('addMarker', {'position': event.latLng, 'title': '', 'draggable': true, 'bound': false}, function(map, marker) {
$('#test').dialog({'modal':true, 'title': 'Edit and save point', 'buttons': {
"Remove": function() {
$(this).dialog( "close" );
$(map).setMap(null);
},
"Save": function() {
$(this).dialog( "close" );
}
}});
findLocation(marker.getPosition(), marker);
}).dragend( function(event) {
var self = this;
findLocation(event.latLng, this);
}).click( function() {
openDialog(this);
})
});
}});
当我单击此代码中的删除按钮时,我想删除所有标记:
"Remove": function() {
$(this).dialog( "close" );
$(map).setMap(null);}
但是标记仍然存在,请有人帮助我。谢谢