Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 748 Bytes

File metadata and controls

17 lines (12 loc) · 748 Bytes

lat-long-google-maps-url-extraction

This is simple program written in php to retrieve latitude and longitude from any google maps URL

Example

URL Input : Mc Donald's https://goo.gl/maps/4ibdvwWDF7HWmXcSA

Program will Retrieve URL Only : https://goo.gl/maps/4ibdvwWDF7HWmXcSA

URL Will open in program and getting this as a return : https://www.google.com/maps/place/McDonald's/@23.0010599,120.2570993,17z/data=!3m1!5s0x346e7130205cb45f:0xadba0fab36193660!4m5!3m4!1s0x346e7131dea353d3:0xb055df6930efb629!8m2!3d23.0003853!4d120.2589085?shorturl=1

Based the URL, Retrieve Latitude and Longitude

  • Place : @23.0010599,120.2570993,
  • Latitude : 23.0010599
  • Longitude : 120.2570993

Added python version

You can ask me for another example