Create Google Maps links based on coordinates

后端 未结 5 1534
醉酒成梦
醉酒成梦 2020-12-23 12:54

How can I create Google Maps links based on coordinates. Their new basic share urls contain a lot of parameters, for example -

https://www.google.com/maps/place/Vetl

相关标签:
5条回答
  • 2020-12-23 13:31

    The currently accepted answer ends up adding an additional history entry in browsers at the moment as Google Maps redirects to a different URL format.

    To avoid that extra entry in the browser's history, use the official Maps API url:

    https://www.google.com/maps/search/?api=1&query=latitude,longitude
    

    This will display a marker at the latitude, longitude location as well.

    If you only want to center the map (and not display a marker), use the map action:

    https://www.google.com/maps/@?api=1&map_action=map&center=latitude,longitude
    
    0 讨论(0)
  • 2020-12-23 13:43

    According to another answer, you can use following url

    http://maps.google.com/maps?q=24.197611,120.780512

    to show a pin.

    0 讨论(0)
  • 2020-12-23 13:43

    Working in 2020, no sidebar, url doesnt change, including zoom

    Syntax: https://www.google.com/maps/@{lat},{long},{zoom}z
    

    Example: https://www.google.com/maps/@51.123,10.123,15z

    0 讨论(0)
  • 2020-12-23 13:47

    The simple and best way is to use as follows:-

    https://maps.google.com/?q=latitude-value,longitude-value
    

    Hope it helps. Thank you!

    0 讨论(0)
  • 2020-12-23 13:54

    Why not http://www.google.com/maps/place/lat,lng I think this is the simplest way

    http://www.google.com/maps/place/49.46800006494457,17.11514008755796

    0 讨论(0)
提交回复
热议问题