It seems that providing the saddr param isn't working on latest google maps. I just left it out and then navigation from my current location worked fine.
https://developers.google.com/maps/documentation/ios/urlscheme
For example:
NSString *dAddrVal = [NSString stringWithFormat:@"%f,%f", end.coordinate.latitude, end.coordinate.longitude];
NSString *url = [NSString stringWithFormat:@"comgooglemaps://?daddr=%@&directionsmode=driving",
dAddrVal
];
It seems that providing the saddr param isn't working on latest google maps. I just left it out and then navigation from my current location worked fine.
https://developers.google.com/maps/documentation/ios/urlscheme
For example:
NSString *dAddrVal = [NSString stringWithFormat:@"%f,%f", end.coordinate.latitude, end.coordinate.longitude];
NSString *url = [NSString stringWithFormat:@"comgooglemaps://?daddr=%@&directionsmode=driving",
dAddrVal
];