CMMapLauncher alternatives and similar libraries
Based on the "Maps" category.
Alternatively, view CMMapLauncher alternatives based on common mentions on social networks and blogs.
-
Mapbox GL
Interactive, thoroughly customizable maps in native Android, iOS, macOS, Node.js, and Qt applications, powered by vector tiles and OpenGL -
ClusterKit
An iOS map clustering framework targeting MapKit, Google Maps and Mapbox. -
PXGoogleDirections
Google Directions API helper for iOS, written in Swift -
NAMapKit
Allows you to use custom maps in iphone applications and attempts to mimics some of the behaviour of the MapKit framework -
JDSwiftHeatMap
JDSwiftMap is an IOS Native MapKit Library. You can easily make a highly customized HeatMap. -
MapViewPlus
Use any custom view as custom callout view of your MKMapView with cool animations. Also, easily use any image as annotation view. -
MSFlightMapView
MSFlightMapView allows you to easily add and animate geodesic flights to Google map -
GoogleMapsHelper
An easy to integrate Model Based Google Maps Helper (SVHTTPClient, AFNetworking) That lets you Geo Code , Reverse Geocode, Get Directions , Places Autocomplete. -
GLMap
Crossplatform offline vector map with MapCSS styling. Offline search and offline navigation are included.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CMMapLauncher or a related project?
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.