Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
map.setCenter(new google.maps.LatLng(locationX,locationY);
如果我这样做,谷歌会在地图画布的中心放置一个标记。我希望它不是中心,例如右上角。可能吗?
而不是 setCenter,请尝试以下操作
panTo(latLng:LatLng) 将地图的中心更改为给定的 LatLng。如果变化小于地图的宽度和高度,则过渡将平滑动画。
panTo(latLng:LatLng)
将地图的中心更改为给定的 LatLng。如果变化小于地图的宽度和高度,则过渡将平滑动画。