I am specifying a route to be opened by the Google Maps app on iOS. The url I specify is of the form:
"comgooglemaps://?daddr=\(destination.lat),\(destination.lng)&saddr=\(myLocation.coordinate.latitude),\(myLocation.coordinate.longitude)&directionsmode=driving&waypoints=\(wp1.lat),\(wp1.lng)"
No matter what though, the route will never include the waypoint I specify. Is it possible that this notation is not supported on iOS? If so, what is the correct one?
Thanks