I've read the documentations for both android and iOS but only I can't find but I cant manage to make google maps avoid either tolls or highways, this is my current code (and &avoid=tfh
does not work on iOS for me). Are there any way to avoid highways and tolls in the documentation?
let ONE = getText("address")
let TWO = getText("address2")
Alamofire.request(.GET, "https://maps.googleapis.com/maps/api/directions/json?language=sv&origin=\(ONE)&destination=\(TWO)&mode=drive&avoid=tfh", parameters: ["foo": "bar"])
.responseJSON { response in...