vote up 7 vote down star
11

The Apple Developer Documentation explains that if you place a link in a web page and then click it whilst using Mobile Safari on the iPhone, the Google Maps application that is provided as standard with the iPhone will launch.

How can I launch the same Google Maps application with a specific address from within my own native iPhone application (i.e. not a web page through Mobile Safari) in the same way that tapping an address in Contacts launches the map?

NOTE: THIS ONLY WORKS ON THE DEVICE ITSELF. NOT IN THE SIMULATOR.

flag

6 Answers

vote up 13 vote down check

I believe UIApplication has an openURL method, that will perform the normal iPhone magical URL reinterpretation. so

[someUIApplication openURL:[[NSURL alloc] initWithString: @"http://maps.google.com/maps?g=London"]]

should invoke the Google maps app.

(This info is available from the unoffical SDK documentation, so no Apple NDA required). I refuse to confirm if I checked that the same methods exist in UIApplication for the formal SDK).

link|flag
The NDA is lifted for published code. – Giao Nov 10 '08 at 16:15
Wiki with description of params: mapki.com/wiki/Google_Map_Parameters Apple iphone os programming guide Appendix A has a list of supported parameters on the iphone. – Carl Coryell-Martin Aug 12 at 5:31
vote up 9 vote down

Exactly. The code that you need to achieve this is:

UIApplication *app = [UIApplication sharedApplication];
[app openURL:[[NSURL alloc] initWithString: @"http://maps.google.com/maps?g=London"]];

since as per the documentation, UIApplication is only available in the Application Delegate unless you call sharedApplication.

link|flag
vote up 0 vote down

If you need more flexabilty than the Google URL format gives you or you would like to embed a map in your application instead of launching the map app there is an example found at https://sourceforge.net/projects/quickconnect.

It will even supply you with the source code to do all of the embedding.

link|flag
vote up 2 vote down

To open Google Maps at specific co-ordinates, try this code:

NSString *latlong = @"-56.568545,1.256281"; NSString *url = [NSString stringWithFormat: @"http://maps.google.com/maps?ll=%@", [latlong stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];

You can replace the latlong string with the current location from CoreLocation.

You can also specify the zoom level, using the (ā€zā€œ) flag. Values are 1-19. Here's an example:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://maps.google.com/maps?z=8"]];

link|flag
vote up 2 vote down

For the phone question, are you testing on the simulator? This only works on the device itself.

Also, openURL returns a bool, which you can use to check if the device you're running on supports the functionality. For example, you can't make calls on an iPod Touch :-)

link|flag
vote up 1 vote down

Here's the Apple URL Scheme Reference for Map Links: http://developer.apple.com/iphone/library/featuredarticles/iPhoneURLScheme_Reference/Articles/MapLinks.html

The rules for creating a valid map link are as follows:

  • The domain must be google.com and the subdomain must be maps or ditu.
  • The path must be /, /maps, /local, or /m if the query contains site as the key and local as the value.
  • The path cannot be /maps/*.
  • All parameters must be supported. See Table 1 for list of supported parameters**.
  • A parameter cannot be q=* if the value is a URL (so KML is not picked up).
  • The parameters cannot include view=text or dirflg=r.

**See the link above for the list of supported parameters.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.