forked from trailbehind/TBMapzenRouting
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOnTheRoad.podspec
27 lines (17 loc) · 1.46 KB
/
OnTheRoad.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "OnTheRoad"
s.version = "1.0.1"
s.summary = "Request routes from Valhalla routing services, include Mapzen's Turn-by-Turn routing service."
s.description = <<-DESC
Valhalla is an open source routing engine and accompanying libraries for use with OpenStreetMap data (https://github.com/valhalla/valhalla). Valhalla also includes tools like time+distance matrix computation and tour optimization (Traveling Salesman).
Mapzen Turn-by-Turn is a navigation service for the world, based on open data, and utilizes the Valhalla tool suite. Add routing to your app and let your users go anywhere on the planet, whether by foot, bike, car, bus, train, or ferry.
The Mapzen Turn-by-Turn API makes it easy to let navigation find its way into your apps, based on road network data from OpenStreetMap and public transit feeds from Transitland. Whether your users need multiple locations, points along a route, custom routing options, or multimodal routing, our API is ready to help.
DESC
s.homepage = "https://github.com/mapzen/on-the-road_ios"
s.license = "MIT"
s.author = { "TrailBehind, Inc." => "[email protected]", "Mapzen" => "[email protected]" }
s.social_media_url = "http://twitter.com/mapzen"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/mapzen/on-the-road_ios.git", :tag => "v#{s.version}" }
s.source_files = "OTRRouting/*.{h,m,c}"
end