答案 0 :(得分:2)
这并不困难,观察地图的bounds_changed
- 事件以及它何时触发检索地图属性并将它们分配给location-object的hash-property:
google.maps.event.addListener(map, 'bounds_changed',function(){
location.hash='lat='+this.getCenter().lat().toFixed(6)+
'&lng='+this.getCenter().lng().toFixed(6)+
'&zoom='+this.getZoom();
});