Questa sezione descrive come impostare la destinazione del veicolo dopo che il server ha associato un viaggio a un veicolo.
Prima di iniziare
Per questa sezione è necessario aver completato quanto segue:
Impostare la destinazione nell'app del conducente
Dopo aver associato un consumatore a un conducente, devi configurare la di destinazione nell'app del conducente, procedendo nel seguente modo:
Recupera la destinazione del veicolo dalla raccolta delle tappe nel parco risorse Engine, che viene restituito da
GetTrip()
,UpdateTrip()
eGetVehicle()
.Imposta la destinazione chiamando il metodo Navigation SDK for iOS
setDestinations()
.
I seguenti esempi mostrano come impostare la destinazione nel driver dell'app.
Swift
private func startNavigation() {
let destinations = [
GMSNavigationWaypoint(
placeID: "ChIJnUYTpNASkFQR_gSty5kyoUk", title: "PCC Natural Market"),
GMSNavigationWaypoint(
placeID: "ChIJJ326ROcSkFQRBfUzOL2DSbo", title: "Marina Park"),
]
mapView.navigator?.setDestinations(destinations, callback: { routeStatus in
guard routeStatus == .OK else {
// Error starting navigation.
return
}
mapView.locationSimulator?.simulateLocationsAlongExistingRoute()
mapView.navigator?.isGuidanceActive = true
mapView.navigator?.sendsBackgroundNotifications = true
mapView.cameraMode = .following
})
}
Objective-C
- (void)startNavigation {
NSArray<GMSNavigationWaypoint *> *destinations =
@[[[GMSNavigationWaypoint alloc] initWithPlaceID:@"ChIJnUYTpNASkFQR_gSty5kyoUk"
title:@"PCC Natural Market"],
[[GMSNavigationWaypoint alloc] initWithPlaceID:@"ChIJJ326ROcSkFQRBfUzOL2DSbo"
title:@"Marina Park"]];
[_mapView.navigator setDestinations:destinations
callback:^(GMSRouteStatus routeStatus) {
if (routeStatus != GMSRouteStatusOK) {
// Error starting navigation.
return;
}
[_mapView.locationSimulator simulateLocationsAlongExistingRoute];
_mapView.navigator.guidanceActive = YES;
_mapView.navigator.sendsBackgroundNotifications = YES;
_mapView.cameraMode = GMSNavigationCameraModeFollowing;
}];
}