iOS: comment activer les directions audio sur Google Maps

Je suis en utilisant le code ci-dessous pour ouvrir Google Maps à partir de mon application iOS où je suis, passant de départ et le point Final de lieux.

Il accède correctement à partir de point de départ au point de fin, mais ne le guide pas à travers Audio (voix).

Je veux activer le guidage vocal de la facilité.

s'il vous plaît aider

ClientState *clientState = [ClientState sharedInstance];            
CLLocation *currentLocation = clientState.currentLocation;            

NSString *googleMapsURLString = [NSString stringWithFormat:@"maps://maps.google.com/?xyz=xyz&saddr=%1.8f,%1.8f&daddr=%@,%@",
         currentLocation.coordinate.latitude, currentLocation.coordinate.longitude, trip.pickupLatitude, trip.pickupLongitude];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];

source d'informationauteur Azhar