如何在谷歌地图中获取城市的 GLatLngBounds
我必须在谷歌地图中显示用户输入的城市。 我发现城市可以使用 GClientGeocoder.getLatLng(address:String, callback:function) 但我还需要设置缩放级别,以便城市适合地图。
我找到了 getBoundsZoomLevel(bounds:GLatLngBounds, viewSize:GSize) 但我不知道如何获取城市的bounds:GLatLngBounds。有什么想法吗?
I have to display a user entered city in a google map.
I find the city ok with GClientGeocoder.getLatLng(address:String, callback:function) but i also need to set the zoom level so the city fits the map.
I found getBoundsZoomLevel(bounds:GLatLngBounds, viewSize:GSize) but i don't know how to get the bounds:GLatLngBounds for the city. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用:
setCenter(center, Zoom?, type?)
其中center是中心点,zoom是您想要的缩放级别,type是可选的。
You can try using:
setCenter(center, zoom?, type?)
Where center is the center point, zoom is your desired zoom level and type is optional.