เอกสารนี้อธิบายวิธีสร้างการเดินทางแบบใช้ร่วมกันแบบรวมกลุ่ม ตั้งค่าช่องที่ถูกต้อง และกำหนดให้กับยานพาหนะเพื่อดำเนินการ บทแนะนำนี้จะถือว่าคุณได้ตั้งค่า 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 | ไม่ได้ | รหัสของยานพาหนะที่กําหนดให้กับการเดินทาง |
ตัวอย่าง: สร้างการเดินทางแบบกลุ่มที่แชร์
ตัวอย่างการผสานรวมแบ็กเอนด์ต่อไปนี้สาธิตวิธีสร้างการเดินทางและกำหนดการเดินทางให้กับยานพาหนะเป็นการเดินทางร่วมกัน
// Vehicle with VEHICLE_ID ID is already created and it is assigned Trip A.
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "shared-trip-A";
static final String VEHICLE_ID = "your-vehicle-id";
static final String TRIP_A_ID = "trip-a-id";
static final String TRIP_B_ID = "trip-b-id";
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
String parent = "providers/" + PROJECT_ID;
LatLng tripBPickup =
LatLng.newBuilder().setLatitude(-12.12314).setLongitude(88.142123).build();
LatLng tripBDropoff =
LatLng.newBuilder().setLatitude(-14.12314).setLongitude(90.142123).build();
TerminalLocation tripBPickupTerminalLocation =
TerminalLocation.newBuilder().setPoint(tripBPickup).build();
TerminalLocation tripBDropoffTerminalLocation =
TerminalLocation.newBuilder().setPoint(tripBDropoff).build();
// TripA already exists and it's assigned to a vehicle with VEHICLE_ID ID.
Trip tripB = Trip.newBuilder()
.setTripType(TripType.SHARED)
.setVehicleId(VEHICLE_ID)
.setPickupPoint(tripBPickupTerminalLocation)
.setDropoffPoint(tripBDropoffTerminalLocation)
.addAllVehicleWaypoints(
// This is where you define the arrival order for unvisited waypoints.
// If you don't specify an order, then the Fleet Engine adds Trip B's
// waypoints to the end of Trip A's.
ImmutableList.of(
// Trip B's pickup point.
TripWaypoint.newBuilder()
.setLocation(tripBPickupTerminalLocation)
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
.build(),
// Trip A's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripA.getDropoffPoint())
.setTripId(TRIP_A_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build(),
// Trip B's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripBDropoffTerminalLocation)
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build()))
.build();
// Create Trip request
CreateTripRequest createTripRequest = CreateTripRequest.newBuilder()
.setParent(parent)
.setTripId(TRIP_B_ID)
.setTrip(tripB)
.build();
try {
// createdTrip.remainingWaypoints will contain shared-pool waypoints.
// [tripB.pickup, tripA.dropoff, tripB.dropoff]
Trip createdTrip = tripService.createTrip(createTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case ALREADY_EXISTS:
break;
case PERMISSION_DENIED:
break;
}
return;
}
อัปเดตการเดินทางแบบร่วมกลุ่ม
การเดินทางที่สร้างขึ้นใน Fleet Engine จะต้องกำหนดให้กับยานพาหนะเพื่อให้ Fleet Engine คำนวณเวลาถึงโดยประมาณและติดตามการเดินทางได้ ซึ่งทำได้ระหว่างการสร้างการเดินทางหรือในภายหลังเมื่ออัปเดตการเดินทาง
สำหรับการเดินทางร่วมแบบแชร์ คุณต้องระบุลำดับของจุดอ้างอิงที่ยังไม่ได้เข้าชม
ในคอลเล็กชันของจุดอ้างอิงสำหรับยานพาหนะ (Trip.vehicle_waypoints
)
ของการเดินทาง Fleet Engine ใช้รายการนี้เพื่ออัปเดตจุดอ้างอิงของการเดินทางโดยอัตโนมัติสำหรับการเดินทางทั้งหมดในพูลร่วม
ตัวอย่างเช่น พิจารณาการเดินทางแบบแชร์สระน้ำ 2 รายการ ได้แก่ การเดินทาง ก และการเดินทาง ข
- การเดินทาง ก กำลังเดินทางไปยังจุดส่งผู้โดยสาร
- จากนั้นระบบจะเพิ่มการเดินทาง ขลงในยานพาหนะคันเดียวกัน
ใน UpdateTripRequest
รายการสำหรับการเดินทาง ข คุณตั้งค่า vehicleId
และตั้งค่า Trip.vehicle_waypoints
เป็นลําดับจุดแวะพักที่ดีที่สุด ดังนี้ ข จุดรับ → ก จุดส่ง → ข จุดส่ง
- การเรียกใช้
getVehicle()
จะแสดงผลremainingWaypoints
ซึ่งประกอบด้วย
B รับสินค้า → การออกจากรถ → B การออกจากรถ getTrip()
หรือonTripRemainingWaypointsUpdated
callback สำหรับ Trip A จะแสดงผลremainingWaypoints
ที่มี
B Pickup → A Drop-offgetTrip()
หรือonTripRemainingWaypointsUpdated
callback สำหรับ Trip B จะแสดงผลremainingWaypoints
ที่มี
ดังนี้ B Pickup → A Drop-off → B Drop-off
ตัวอย่าง
ตัวอย่างการผสานรวมแบ็กเอนด์ต่อไปนี้แสดงวิธีอัปเดตการเดินทางด้วยรหัสยานพาหนะและจุดแวะพักสำหรับการเดินทางแบบแชร์สระน้ำ 2 รายการ
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_A_ID = "share-trip-A";
static final String TRIP_B_ID = "share-trip-B";
static final String VEHICLE_ID = "Vehicle";
String tripName = "providers/" + PROJECT_ID + "/trips/" + TRIP_B_ID;
// Get Trip A and Trip B objects from either the Fleet Engine or storage.
Trip tripA = …;
Trip tripB = …;
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
// The trip settings to update.
Trip trip = Trip.newBuilder()
.setVehicleId(VEHICLE_ID)
.addAllVehicleWaypoints(
// This is where you define the arrival order for unvisited waypoints.
// If you don't specify an order, then the Fleet Engine adds Trip B's
// waypoints to the end of Trip A's.
ImmutableList.of(
// Trip B's pickup point.
TripWaypoint.newBuilder()
.setLocation(tripB.getPickupPoint())
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
.build(),
// Trip A's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripA.getDropoffPoint())
.setTripId(TRIP_A_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build(),
// Trip B's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripB.getDropoffPoint())
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build()))
.build();
// The trip update request.
UpdateTripRequest updateTripRequest = UpdateTripRequest.newBuilder()
.setName(tripName)
.setTrip(trip)
.setUpdateMask(FieldMask.newBuilder()
.addPaths("vehicle_id")
.addPaths("vehicle_waypoints"))
.build();
// Error handling. If Fleet Engine has both a trip and vehicle with the IDs,
// and if the credentials validate, and if the given vehicle_waypoints list
// is valid, then the service updates the trip.
try {
Trip updatedTrip = tripService.updateTrip(updateTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case NOT_FOUND: // Either the trip or vehicle does not exist.
break;
case PERMISSION_DENIED:
break;
case INVALID_REQUEST: // vehicle_waypoints is invalid.
break;
}
return;
}