Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set Router Language #210

Merged
merged 8 commits into from
Mar 13, 2017
Merged

Set Router Language #210

merged 8 commits into from
Mar 13, 2017

Conversation

sarahsnow1
Copy link
Member

  • Updates OnTheRoad dependency
  • Adds method to set the MapzenRoutingController's locale
  • Uses default locale if locale not explicitly set
  • Updates routing example to allow changing the router's language
  • Adds tests to MapzenRoutingController

Closes #186

}
@objc private func changeRouterLanguage() {
let actionSheet = UIAlertController.init(title: "Router Language", message: "Choose a language", preferredStyle: .actionSheet)
actionSheet.addAction(UIAlertAction.init(title: "English", style: .default, handler: { [unowned self] (action) in
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't something like that work?

let languageIdByActionSheetTitle = [
    "English": "en_US",
    "French": "fr_FR",
    ...
]
for (actionTitle, languageIdentifier) in languageIdByActionSheetTitle {
    actionSheet.addAction(UIAlertAction.init(title: actionTitle, style: .default, handler: { [unowned self] (action) in
        self.routingLocale = Locale.init(identifier: languageIdentifier)
    }))
}

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yes, thats more concise. Updated.

_ = routingController.requestRoute(withLocations: [startingPoint, endingPoint],
costingModel: .auto,
costingOption: nil,
directionsOptions: ["units" : "miles" as NSObject]) { (routingResult, token, error) in
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any plan in supporting an alternative km unit?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the next step will be adding support for a units enum: mapzen/on-the-road_ios#27

@sarahsnow1 sarahsnow1 merged commit bd39ebf into master Mar 13, 2017
@sarahsnow1 sarahsnow1 deleted the 186-router-language branch March 13, 2017 22:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants