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