Popularity
3.7
Declining
Activity
0.0
Stable
191
15
28

Code Quality Rank: L3
Programming language: Objective-C
License: MIT License
Tags: Maps    
Latest version: v1.1.0

CMMapLauncher alternatives and similar libraries

Based on the "Maps" category.
Alternatively, view CMMapLauncher alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of CMMapLauncher or a related project?

Add another 'Maps' Library

README

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.


*Note that all licence references and agreements mentioned in the CMMapLauncher README section above are relevant to that project's source code only.