1

如何检测 jquery-ui-map 中关闭的 infowindow 并在窗口关闭后将地图平移到中心?

<pre>

 $(function() { 
                demo.add(function() {
                    $('#themap').gmap({'center': '54.977614,23.871643', 'zoom': 7,'disableDefaultUI':false, 'callback': function() {
                        var self = this;
                        $.getJSON( 'index.php?option=com_maps&view=stendai&format=json', function(data) { 
                            $.each( data.markers, function(i, marker) {
                                self.addMarker({ 'id':marker.id, 'position': new google.maps.LatLng(marker.latitude, marker.longitude),'icon':'images/stendas.png' , 'bounds':true }



                                 ).click(function() {
                                    self.openInfoWindow({ 'content': marker.content }, this);
                                });

                            });
                        });
                    }}); 
                }).load();
            });


</pre>
4

1 回答 1

1

Google Maps Infowindows 有一个closeclick事件。您可以将侦听器附加到每个信息窗口的此事件,并在收到此事件的通知时平移地图。这篇文章中给出了一个基本示例。

于 2012-09-12T15:50:31.783 回答