-
Notifications
You must be signed in to change notification settings - Fork 24
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
Set Router Language #210
Conversation
} | ||
@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 |
There was a problem hiding this comment.
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)
}))
}
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
OnTheRoad
dependencyMapzenRoutingController
's localeMapzenRoutingController
Closes #186