https://www.google.com/maps/place/@/data=!4m2!3m1!1s0x88c2cdd22ab04385:0xf12ec367be629fbc
How do I get the address and coordinates given this google place url?
Asked
Active
Viewed 514 times
-1

user3248578
- 905
- 8
- 18
1 Answers
1
From the answer to these related questions:
- how do i decode/encode the url parameters for the new google maps?
- Decoding the Google Maps embedded parameters
https://www.google.com/maps/place/@/data=
!4m2
!3m1
!1s0x88c2cdd22ab04385:0xf12ec367be629fbc
ftid is 0x88c2cdd22ab04385:0xf12ec367be629fbc
There are no coordinates in the provided URL. That is only a ftid for Jimmy John's
If you decode the URL retrieved from that redirected request:
https://www.google.com/maps/place/Jimmy+John's/@27.9371703,-82.2956035,17z/data=!3m1!4b1!4m5!3m4!1s0x88c2cdd22ab04385:0xf12ec367be629fbc!8m2!3d27.9371703!4d-82.2934148
you can get coordinates (note, they are not the coordinates after the @
, they are decoded from the last two entries in the URL):
27.9371703,-82.2934148

geocodezip
- 158,664
- 13
- 220
- 245
-
Thank you @geocodezip, the answer was in the second related question you suggested. – user3248578 Jul 30 '19 at 03:06