Is there a way to open OS X (Maverick's) Maps.app from a NSMenuItem? I'd like to plot a lat/lng pair on Apple Maps.
This will open OpenStreetMaps in a browser:
-(IBAction) plot: (id) sender {
NSURL *url = [NSURL URLWithString:@"https://www.openstreetmap.org/"];
if( ![[NSWorkspace sharedWorkspace] openURL:url] )
NSLog(@"Failed to open url: %@",[url description]);
}
A related topic:
See Apple's spec here:
NSURL *url = [NSURL URLWithString:@"http://maps.apple.com/?ll=45.5200,-122.6819"];
if( ![[NSWorkspace sharedWorkspace] openURL:url] )
NSLog(@"Failed to open url: %@",[url description]);