如何检测 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>