เอกสารนี้อธิบายวิธีสร้างการเดินทางหลายจุดหมาย ตั้งค่าช่องที่ถูกต้อง และกำหนดให้กับยานพาหนะเพื่อดำเนินการ บทแนะนำนี้จะถือว่าคุณได้ตั้งค่า 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;
}
อัปเดตการเดินทางหลายจุดหมาย
คุณต้องกำหนดค่าการเดินทางด้วยรหัสยานพาหนะเพื่อให้เครื่องมือจัดการฟลีตติดตามยานพาหนะไปตามเส้นทางได้ โปรดดูรายละเอียดเกี่ยวกับการอัปเดตการเดินทางที่หัวข้ออัปเดตการเดินทางและจัดการสถานะการเดินทาง
หากไม่ได้ระบุจุดส่งหรือจุดแวะพักกลางทางเมื่อสร้างการเดินทาง คุณก็ระบุได้ในตอนนี้
ซิงค์กันอยู่เสมอตัวอย่างการอัปเดตการเดินทาง
ตัวอย่างต่อไปนี้แสดงวิธีอัปเดตการเดินทางเพื่อเพิ่มรายการจุดหมายระหว่างทางและตั้งรหัสยานพาหนะ
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;
}