单击标记时执行此代码。一切正常,只是地图不会跨越垂直(它跨越水平)
这是我的代码(javascript)
google.maps.event.addListener(marker, 'click', function() {
infoBox.setContent('<div class="info_details">'+this.image+' <h2>'+this.title+'</h2> <div class="prop_details">'+this.type+' for '+this.type2+' - '+this.price+'</div>' );
infoBox.open(map, this);
map.setCenter(this.position);
map.panBy(380,110);
});
答案 0 :(得分:0)
将infoBox的disableAutoPan
- 选项设置为true
,否则panBy()
的调用将与infoBox的自动平移竞争。