เอกสารนี้อธิบายวิธีสร้างการเดินทางหลายจุดหมาย ตั้งค่าช่องที่ถูกต้อง และกำหนดการเดินทางให้กับยานพาหนะเพื่อดำเนินการ บทแนะนำนี้ถือว่าคุณได้ตั้งค่า Fleet Engine, สร้างยานพาหนะ, มีแอปคนขับที่ใช้งานได้ และ (ไม่บังคับ) แอปผู้บริโภคแล้ว นอกจากนี้ คุณควรคุ้นเคยกับสถานการณ์การเดินทางต่างๆ ที่มีให้สำหรับการเดินทางแบบออนดีมานด์ด้วย ดูคำแนะนำที่เกี่ยวข้องต่อไปนี้สำหรับ ซึ่ง:
- ตั้งค่า Fleet Engine
- สร้างยานพาหนะ
- สถานการณ์การเดินทางในภาพรวมการเดินทางแบบออนดีมานด์
ข้อมูลเบื้องต้นเกี่ยวกับการสร้างการเดินทาง
ส่วนนี้จะอธิบายรายละเอียดคำขอที่จำเป็นสำหรับการสร้างการเดินทางใน Fleet Engine คุณส่งคำขอสร้างโดยใช้ gRPC และ REST
ฟิลด์การเดินทาง
ใช้ช่องต่อไปนี้เพื่อสร้างการเดินทางใน Fleet Engine คุณใช้ช่องที่แตกต่างกันสำหรับการเดินทางประเภทต่างๆ ได้ ไม่ว่าจะเป็นการเดินทางไปยังจุดหมายเดียวหรือหลายจุดหมาย การเดินทางติดต่อกัน หรือการเดินทางแบบแชร์ คุณ สามารถใส่ช่องที่ไม่บังคับเมื่อสร้างการเดินทาง หรือคุณสามารถตั้งค่า ภายหลังเมื่อคุณอัปเดตการเดินทาง
ชื่อ | จำเป็นหรือไม่ | คำอธิบาย |
---|---|---|
parent | ใช่ | สตริงที่มีรหัสโปรเจ็กต์ รหัสนี้ต้องเป็นรหัสเดียวกับที่ใช้ในการผสานรวม Fleet Engine ทั้งหมด โดยมีบทบาทบัญชีบริการเดียวกัน |
trip_id | ใช่ | สตริงที่คุณสร้างซึ่งระบุการเดินทางนี้โดยไม่ซ้ำกัน รหัสการเดินทางมี ข้อจำกัดบางอย่างตามที่ระบุไว้ในข้อมูลอ้างอิง |
trip_type | ใช่ | ตั้งค่า TripType ให้เป็นค่าต่อไปนี้สำหรับประเภทการเดินทางที่กำลังสร้าง
|
pickup_point | ใช่ | จุดเริ่มต้นของการเดินทาง |
ปลายทางระดับกลาง | ใช่ | การเดินทางที่มีหลายปลายทางเท่านั้น: รายการจุดหมายระดับกลางที่คนขับเข้าชมระหว่างทาง
การรับส่ง เช่นเดียวกับ |
vehicle_waypoints | ใช่ | การเดินทางแบบแชร์ร่วมกันเท่านั้น: ช่องนี้รองรับการสลับจุดระหว่างการเดินทางจากหลายการเดินทาง
ซึ่งจะมีจุดแวะพักที่เหลือทั้งหมดสำหรับยานพาหนะที่มอบหมาย รวมถึงจุดรับและจุดส่งของการเดินทางนี้ คุณตั้งค่าช่องนี้ได้ด้วยการเรียกใช้ |
number_of_passengers | ไม่ใช่ | จำนวนผู้โดยสารในการเดินทาง |
dropoff_point | ไม่ใช่ | จุดหมายของการเดินทาง |
vehicle_id | ไม่ใช่ | รหัสของพาหนะที่กำหนดการเดินทาง |
ตัวอย่าง: สร้างการเดินทางหลายจุดหมาย
ข้อมูลต่อไปนี้จะแสดงวิธีสร้างการเดินทางหลายจุดหมายสุดพิเศษ ซึ่งมีจุดรับสินค้า จุดส่ง และปลายทางระดับกลาง 1 แห่ง
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "multi-destination-trip-A";
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
// Trip initial settings.
String parent = "providers/" + PROJECT_ID;
Trip trip = Trip.newBuilder()
.setTripType(TripType.EXCLUSIVE)
.setPickupPoint(
TerminalLocation.newBuilder().setPoint(
LatLng.newBuilder()
.setLatitude(-6.195139).setLongitude(106.820826)))
.setNumberOfPassengers(1)
.setDropoffPoint(
TerminalLocation.newBuilder().setPoint(
LatLng.newBuilder()
.setLatitude(-6.1275).setLongitude(106.6537)))
// Add the list of intermediate destinations.
.addAllIntermediateDestinations(
ImmutableList.of(
TerminalLocation.newBuilder().setPoint(
LatLng.newBuilder()
.setLatitude(-6.195139).setLongitude(106.820826)).build()))
.build();
// Create the Trip request.
CreateTripRequest createTripRequest = CreateTripRequest.newBuilder()
.setParent(parent)
.setTripId(TRIP_ID) // Trip ID assigned by the Provider server.
.setTrip(trip) // Initial state is NEW.
.build();
// Error handling.
try {
Trip createdTrip =
tripService.createTrip(createTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case ALREADY_EXISTS: // Trip already exists.
break;
case PERMISSION_DENIED:
break;
}
return;
}
อัปเดตการเดินทางหลายจุดหมาย
คุณต้องกำหนดค่าการเดินทางด้วยรหัสยานพาหนะเพื่อให้ Fleet Engine ติดตามได้ ยานพาหนะตามเส้นทาง ดูรายละเอียดเกี่ยวกับการอัปเดตการเดินทางได้ที่ อัปเดตการเดินทางและจัดการรัฐ
หากไม่ได้ระบุจุดส่งผู้โดยสารหรือจุดพักระหว่างทางเมื่อสร้างการเดินทาง คุณก็ระบุได้ในตอนนี้
ตัวอย่างการอัปเดตการเดินทาง
วิธีต่อไปนี้แสดงวิธีอัปเดตการเดินทางเพื่อเพิ่มรายการตัวกลาง ปลายทางและตั้งค่ารหัสยานพาหนะ
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "multi-destination-trip-A";
String tripName = "providers/" + PROJECT_ID + "/trips/" + TRIP_ID;
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
// The trip settings to be updated.
Trip trip = Trip.newBuilder()
// Add the list of intermediate destinations.
.addAllIntermediateDestinations(
ImmutableList.of(
TerminalLocation.newBuilder().setPoint(
LatLng.newBuilder()
.setLatitude(-6.195139).setLongitude(106.820826)).build()))
.setVehicleId("8241890")
.build();
// The trip update request.
UpdateTripRequest updateTripRequest = UpdateTripRequest.newBuilder()
.setName(tripName)
.setTrip(trip)
.setUpdateMask(
FieldMask.newBuilder()
.addPaths("intermediate_destinations")
.addPaths("vehicle_id")
.build())
.build();
// Error handling.
try {
Trip updatedTrip =
tripService.updateTrip(updateTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case NOT_FOUND: // The trip doesn't exist.
break;
case PERMISSION_DENIED:
break;
}
return;
}
จัดการสถานะการเดินทางสําหรับการเดินทางหลายจุดหมาย
คุณระบุสถานะของการเดินทางโดยใช้หนึ่งในการแจกแจง TripStatus
เมื่อสถานะของการเดินทางเปลี่ยนแปลง เช่น จาก ENROUTE_TO_PICKUP
เป็น
ARRIVED_AT_PICKUP
คุณต้องอัปเดตสถานะการเดินทางใน Fleet Engine สถานะการเดินทางจะขึ้นต้นด้วยค่า NEW
เสมอ และลงท้ายด้วยค่า COMPLETE
หรือ CANCELED
นอกเหนือจากการอัปเดตสถานะการเดินทางแล้ว สำหรับการเดินทางหลายจุดหมาย สำหรับการเดินทางจุดหมายเดียว คุณจะต้องอัปเดตข้อมูลต่อไปนี้ด้วย ทุกครั้งที่รถไปถึงจุดหมายกลาง
intermediateDestinationIndex
intermediateDestinationsVersion
ซึ่งทำได้โดยใช้ค่าต่อไปนี้จากชุดค่าผสม TripStatus
ENROUTE_TO_PICKUP
ARRIVED_AT_PICKUP
ENROUTE_TO_INTERMEDIATE_DESTINATION
ARRIVED_AT_INTERMEDIATE_DESTINATION
ENROUTE_TO_DROPOFF
COMPLETE
ตัวอย่างการเดินทางที่มีจุดหมายพักกลางทาง
ต่อไปนี้แสดงวิธีสร้างการเดินทางหลายจุดหมายซึ่งผ่านจุดรับแล้ว และกำลังไปยังจุดหมายกลางแรก
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "multi-destination-trip-A";
String tripName = "providers/" + PROJECT_ID + "/trips/" + TRIP_ID;
// Get the trip object from either the Fleet Engine or storage.
Trip trip = …;
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
// The trip settings to be updated.
Trip trip = Trip.newBuilder()
// Trip status cannot return to a previous state once it has passed.
.setTripStatus(TripStatus.ENROUTE_TO_INTERMEDIATE_DESTINATION)
// Enroute to the first intermediate destination.
.setIntermediateDestinationIndex(0)
// You must provide an intermediate_destinations_version to ensure that you
// have the same intermediate destinations list as the Fleet Engine.
.setIntermediateDestinationsVersion(
trip.getIntermediateDestinationsVersion())
.build();
// The trip update request.
UpdateTripRequest updateTripRequest = UpdateTripRequest.newBuilder()
.setName(tripName)
.setTrip(trip)
.setUpdateMask(
FieldMask.newBuilder()
.addPaths("trip_status")
.addPaths("intermediate_destination_index")
// intermediate_destinations_version must not be in the update mask.
.build())
.build();
// Error handling.
try {
Trip updatedTrip =
tripService.updateTrip(updateTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case NOT_FOUND: // The trip doesn't exist.
break;
case FAILED_PRECONDITION: // Either the trip status is invalid, or the
// intermediate_destinations_version doesn't
// match Fleet Engine's.
break;
case PERMISSION_DENIED:
break;
}
return;
}