I want my web's register users to store their location (latitude & longitude) from provided gmap in their profile page, i hv embeded google map successfully, but dont know how to get latitude & longitude of current location of gmap set by user..... optional *current zoom value please help
2条回答 默认 最新
dongzhuang6247 2012-03-20 21:17关注See https://developers.google.com/maps/documentation/javascript/reference#Map
Assuming your map is stored in a variable called
map, this is how to get the center of the map (returns a LatLng):map.getCenter()Returns the position displayed at the center of the map. Note that this LatLng object is not wrapped. See LatLng for more information.
And the zoom level of the map (returns a number):
map.getZoom()本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报