ℹ️ MapirServices framework, brings you easy access to Map.ir APIs and services.
The example application is the best way to see MapirServices
in action. Simply open the MapirServices.xcodeproj
and run the MapirServices Swift Example
scheme.
MapirServices is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MapirServices'
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
To integrate MapirServices into your Xcode project using Carthage, specify it in your Cartfile
:
github "map-ir/mapir-ios-sdk-services"
Run carthage update
to build the framework and drag the built MapirServices.framework
into your Xcode project.
On your application targets’ “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase” and add the Framework path as mentioned in Carthage Getting started Step 4, 5 and 6
To integrate using Apple's Swift Package Manager, add the following as a dependency to your Package.swift
:
dependencies: [
.package(url: "https://github.com/map-ir/mapir-ios-sdk-services", from: "1.0.0")
]
If you prefer not to use any of the a forementioned dependency managers, you can integrate MapirServices into your project manually. Simply drag the Sources
Folder into your Xcode project. (not recommended)
- Get an access token from App Registration site.
- Add a key-value pair of your access token to your project's
info.plist
. Key must be "MapirAPIKey
" and set the access token as value. - First import SDK using
import MapirServices
- Create an instance of a class you need.
// It's used for geocoding addresses (not available at this moment) and reverse-geocoding coordintes. let geocoder = Geocoder() // Can be used to search over Map.ir data of places and any other geographical place. let search = Search() // `Directions` brings routing features to you. // Using `Directions` you can find multiple routes between multiple waypoints, considering restrictions and traffic situation. let directions = Directions() // Use `Geofence` to manipulate fences that are associated with you API Key on Map.ir. let geofence = Geofence() // `MapSnapshotter` is used to create static image of piece of the map. let snapshotter = MapSnapshotter() // It's used to calculate the distance and duration between multiple origins and multiple destinations. let distanceMatrix = DistanceMatrix()
See LICENSE file.