5

我为 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);}

但是标记仍然存在,请有人帮助我。谢谢

4

3 回答 3

17

在插件版本 3 中应该使用:

$('#map_canvas').gmap('clear', 'markers');
于 2011-10-27T13:26:13.430 回答
6

你应该打电话

$('#map_canvas').gmap('clearMarkers');
于 2011-07-22T19:23:20.993 回答
0

以前没有使用过该插件,但快速浏览 API 文档似乎表明这可能有效:

"Remove": function() {
       $(this).dialog( "close" );
       $(map).clearMarkers();
}
于 2011-07-20T02:39:21.457 回答