Skip to content

citymapper/CMMapLauncher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CMMapLauncher

CMMapLauncher is a mini-library for iOS that makes it quick and easy to show directions in various mapping applications. To use it, just add CMMapLauncher.h and CMMapLauncher.m to your project.

To check whether one of the supported mapping apps is present on the user's device:

BOOL installed = [CMMapLauncher isMapAppInstalled:CMMapAppCitymapper];

Then, to launch into directions in that app:

CLLocationCoordinate2D bigBen = CLLocationCoordinate2DMake(51.500755, -0.124626);
[CMMapLauncher launchMapApp:CMMapAppCitymapper
            forDirectionsTo:[CMMapPoint mapPointWithName:@"Big Ben"
                                              coordinate:bigBen]];

CMMapLauncher currently knows how to show directions in the following mapping apps:

  • Apple Maps — CMMapAppAppleMaps
  • Citymapper — CMMapAppCitymapper
  • Google Maps — CMMapAppGoogleMaps
  • Navigon — CMMapAppNavigon
  • The Transit App — CMMapAppTheTransitApp
  • Waze — CMMapAppWaze
  • Yandex Navigator — CMMapAppYandex

If you know of other direction-providing apps that expose a URL scheme for launching from other apps, this project wants to incorporate them! Pull requests and issues providing URL schemes are encouraged.

CMMapLauncher was originally created by Citymapper, but is released under the MIT License for the benefit of the iOS developer community.

About

CMMapLauncher is a mini-library for iOS that makes it quick and easy to show directions in various mapping applications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published