download201401 2012-03-20 21:13 采纳率: 0%
浏览 20
已采纳

需要有关谷歌地图嵌入的帮助

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()
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?