All Projects → abdullahselek → ASMapLauncher

abdullahselek / ASMapLauncher

Licence: MIT License
ASMapLauncher is a library for iOS written in Swift that helps navigation with various mapping applications.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to ASMapLauncher

Mrpt navigation
ROS nodes wrapping core MRPT functionality: localization, autonomous navigation, rawlogs, etc.
Stars: ✭ 90 (+119.51%)
Mutual labels:  navigation, mapping
easyRNRoute
https://medium.com/@kevinle/comprehensive-routing-and-navigation-in-react-native-made-easy-6383e6cdc293#.nttfeeq3p
Stars: ✭ 25 (-39.02%)
Mutual labels:  navigation, routing
Mapbox Directions Swift
Traffic-aware directions and map matching in Swift on iOS, macOS, tvOS, watchOS, and Linux
Stars: ✭ 115 (+180.49%)
Mutual labels:  navigation, routing
Findme
An ARKit App that can help your friends to find you
Stars: ✭ 483 (+1078.05%)
Mutual labels:  navigation, routing
awesome-maps-ukraine
A curated list of maps of Ukraine, ukrainian mappers and tools that they use or develop for creating and publish maps
Stars: ✭ 35 (-14.63%)
Mutual labels:  navigation, mapping
Grid map
Universal grid map library for mobile robotic mapping
Stars: ✭ 1,135 (+2668.29%)
Mutual labels:  navigation, mapping
Swiftuirouter
Routing in SwiftUI
Stars: ✭ 242 (+490.24%)
Mutual labels:  navigation, routing
Url Parser
Parse URLs into nicely structured data
Stars: ✭ 118 (+187.8%)
Mutual labels:  navigation, routing
demo-ionic-tab-routing
An Ionic project which shows different kinds of route definition for a tab based layout.
Stars: ✭ 34 (-17.07%)
Mutual labels:  navigation, routing
organicmaps
🍃 Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists. It uses crowd-sourced OpenStreetMap data and is developed with love by MapsWithMe (MapsMe) founders and our community. No ads, no tracking, no data collection, no crapware. Your donations and positive reviews motivate and inspire our small team!
Stars: ✭ 3,689 (+8897.56%)
Mutual labels:  navigation, routing
Router
🛣 Simple Navigation for iOS
Stars: ✭ 438 (+968.29%)
Mutual labels:  navigation, routing
leaflet.TravelNotes
A complete mapping application. With this, you prepare a complete travel, adding itineraries and personnal notes to the map. When you travel is complete, you can save it to a file, export the itineraries to a gpx files, print the itineraries and a roadbook with the notes and itineraries description.
Stars: ✭ 31 (-24.39%)
Mutual labels:  mapping, routing
Nested Navigation Demo Flutter
Nested navigation with BottomNavigationBar
Stars: ✭ 367 (+795.12%)
Mutual labels:  navigation, routing
Corenavigation
📱📲 Navigate between view controllers with ease. 💫 🔜 More stable version (written in Swift 5) coming soon.
Stars: ✭ 69 (+68.29%)
Mutual labels:  navigation, routing
Router-deprecated
🛣 Simple Navigation for iOS - ⚠️ Deprecated
Stars: ✭ 458 (+1017.07%)
Mutual labels:  navigation, routing
routing-py
🌎 Python library to access all public routing, isochrones and matrix APIs in a consistent manner.
Stars: ✭ 106 (+158.54%)
Mutual labels:  navigation, routing
go router
The purpose of the go_router for Flutter is to use declarative routes to reduce complexity, regardless of the platform you're targeting (mobile, web, desktop), handling deep linking from Android, iOS and the web while still allowing an easy-to-use developer experience.
Stars: ✭ 380 (+826.83%)
Mutual labels:  navigation, routing
universal-router
↩️ Router for every occasions
Stars: ✭ 64 (+56.1%)
Mutual labels:  navigation
RouterService
💉Type-safe Navigation/Dependency Injection Framework for Swift
Stars: ✭ 212 (+417.07%)
Mutual labels:  navigation
angular-routing
Angular 13 Example Routing
Stars: ✭ 21 (-48.78%)
Mutual labels:  routing

Build Status CocoaPods Compatible Carthage Compatible Platform License

ASMapLauncher

ASMapLauncher is a library for iOS written in Swift that helps navigation with various mapping applications.

Requirements

ASMapLauncher Version Minimum iOS Target Swift Version
1.0.8 11.x 5.x
1.0.7 9.x 4.2
1.0.6 8.x 4.0
1.0.5 8.0 3.x

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate ASMapLauncher into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!

target '<Your Target Name>' do
	pod 'ASMapLauncher', '1.0.8'
end

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

brew update
brew install carthage

To integrate ASMapLauncher into your Xcode project using Carthage, specify it in your Cartfile:

github "abdullahselek/ASMapLauncher" ~> 1.0.8

Run carthage update to build the framework and drag the built ASMapLauncher.framework into your Xcode project.

Usage

First initiate ASMapLauncher and check for a selected mapping application that installed on device

let mapLauncher = ASMapLauncher()
let isInstalled = mapLauncher.isMapAppInstalled(.here)

Then, launch selected mapping application

if isInstalled {
	let destination: CLLocation! = CLLocation(latitude: 41.0053215, longitude: 29.0121795)
	let fromMapPoint: MapPoint! = MapPoint(location: CLLocation(latitude: currenctCoordinate.latitude,
	longitude: currenctCoordinate.longitude),
										   name: "", 
										   address: "")
    let toMapPoint: MapPoint! = MapPoint(location: CLLocation(latitude: destination.coordinate.latitude, longitude: destination.coordinate.longitude), 
                                         name: "", 
                                         address: "")
    mapLauncher.launchMapApp(.here, 
                             fromDirections: fromMapPoint, 
                             toDirection: toMapPoint)
}

Supported mapping applications

- Apple Maps
- HERE Maps
- Google Maps
- Yandex Navigator
- Citymapper
- Navigon
- The Transit App
- Waze
- Moovit

MIT License

Copyright (c) 2015 Abdullah Selek

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].