For Apple Maps:
- Open Maps for iOS.
- Touch and hold an area of the map.
- Pull up the "Marked Location" drawer. There is a section with latitude and longitude.
For Google Maps:
Answer from JMY1000 on Stack Exchange
- On your iPhone or iPad, open the Google Maps app Google Maps.
- Touch and hold an area of the map that isn’t labeled. You'll see a red pin appear.
- At the bottom, tap Dropped pin. You'll now see the coordinates.
iphone - Getting the longitude and latitude from Google Maps - Ask Different
iphone google maps - direction using latitude and longitude - Stack Overflow
Is it possible to have your iphone lead you where you want to go by putting latitude and longitude coordinates in?
Is there a way to get your iPhones latitude and longitude through python?
On the device, you might use Pythonista and try the location module.
Edit: updated link
https://omz-software.com/pythonista/docs/ios/location.html#module-location
More on reddit.comCan I find latitude and longitude in Google Maps without an address?
Can I use latitude and longitude from Google Maps in other tools?
Why does Google Maps show latitude first and longitude second?
Videos
Yes, you can get your coordinates via Maps app. To do that:
- Tap on your current location or drop a pin to a location of your choosing and then tap.
- Tap on the arrow within the blue circle
- Tap on share location, choose email
- Send it to yourself.
- On the email, there should be a link and a vcard. Both of them include coordinate information. However to get the actual coordinates you'll need to copy the link in the email and paste it into, e.g. Notes, to then select just the coordinates.
And you can input the coordinates into the Sygic app.
Copy and paste the following code into your browser address bar:
javascript:void(prompt(”,gApplication.getMap().getCenter()));
NSString* url = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
currentLocation.coordinate.latitude, currentLocation.coordinate.longitude,
destLocation.coordinate.latitude, destLocation.coordinate.longitude];
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]];
Rob is right.
You can do something like below, just providing the Destination ( or start address )
http://maps.google.com/maps?daddr=-37.8218956215849,144.9599325656891
Or even
http://maps.google.com/maps?saddr=-37.8218956215849,144.9599325656891&daddr=-37.8218956215849,144.9599325656891
It's just replacing start & end with the lat/langs.
http://maps.google.com/maps?saddr=start&daddr=end