Co to jest zaplanowane zadanie?
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Dokumentacja w tej sekcji pokazuje, jak tworzyć zaplanowane zadania i z nimi pracować za pomocą usługi zaplanowanych zadań Google Maps Mobility. Zakładamy, że znasz te zagadnienia:
Zasób Task
, którego użyjesz, jest dostępny w interfejsie gRPC i REST.
W Fleet Engine w przypadku zaplanowanych zadań zadanie reprezentuje aktywność kierowcy, która obejmuje zrealizowanie zaplanowanej dostawy lub usługi dla klientów. Przypisujesz zadania do lokalizacji przystanków pojazdu, w których mają zostać wykonane, a pojazd do nich dociera.
Zadania mogą mieć 2 stany: OPEN
lub CLOSED
. Te stany wskazują, czy zadanie jest aktywne w systemie. W miarę rozwoju zadania aktywnego informujesz o tym Fleet Engine, aktualizując stan przystanku pojazdu powiązanego z tym zadaniem, który jest albo W TRASIE, albo PRZYBYŁ. Gdy kierowca wykona zadania i opuści przystanek, możesz usunąć go z listy przystanków w pojazdach. Więcej informacji o zadaniach i ich relacji do przystanków i pojazdów znajdziesz w sekcji Zaplanowane zadania w artykule Podstawy działania Fleet Engine .
Cykl życia zadania
Aby śledzić każde zadanie w Fleet Engine, musisz najpierw utworzyć element Task
. Więcej informacji znajdziesz w dokumentacji gRCP lub REST.
Tabela poniżej zawiera przykładowy proces tworzenia zadania w Twoim systemie i jego etapów cyklu życia w Fleet Engine. Zakładamy, że masz skonfigurowany Fleet Engine i pojazd do wykonania zadania, a w aplikacji kierowcy włączone są aktualizacje lokalizacji. Zapoznaj się z artykułem Pakiet SDK dla kierowcy: zadania zaplanowane.
1 |
Tworzyć zadania. |
Na początku cyklu roboczego dyspozytor lub administrator usługi tworzy manifest zadań lub usług dostawy. Następnie system tworzy elementy zadania za pomocą CreateTrip z wymaganymi polami, takimi jak typ zadania i lokalizacja. Na tym etapie może też podać inne konfiguracje,
takie jak docelowe okno czasowe, udostępnianie postępu zadania i atrybuty niestandardowe. Zapoznaj się z artykułem Tworzenie zadań związanych z dostawą i powiązanymi z nim przewodnikami. |
2 |
planować zadania, |
Gdy planujesz zadanie dostawy, wysyłasz prośbę o aktualizację pojazdu dostawczego, która aktualizuje element pojazdu o listę przystanków. Przypisz do każdego przystanku listę zadań, które mają zostać wykonane na przystanku.
Zobacz Aktualizowanie zadań związanych z pojazdem dostawczym.
|
3 |
Zaktualizuj postępy w realizacji zadania. |
Gdy zadanie zostanie przypisane do przystanku dostawy i zostanie aktywowane w Fleet Engine, Twój system będzie informować Fleet Engine o postępach pojazdu podczas zbliżania się do przystanku, dojazdu do niego i opuszczania go. Dzięki tym informacjom Fleet Engine może najlepiej wyznaczać trasy i aktualizować stany w trakcie podróży, a także w ciągu dnia. Zobacz Aktualizowanie stanu przystanku pojazdu.
|
4 |
Udostępniać podróże. |
W tym samym momencie, gdy pojazd rozpoczyna aktywną nawigację na dzień dostawy, możesz udostępnić informacje o trasie zainteresowanym stronom. Fleet Engine udostępnia szczegóły zadań i lokalizację pojazdu zainteresowanym osobom w następujący sposób:
- Informacje o dostawie dla konsumentów . Dzięki temu rozwiązaniu klienci mogą sprawdzać stan swojego przesyłki oraz informacje o lokalizacji pojazdu, które im udostępnisz.
Zobacz udostępnianie informacji klientom w przypadku zaplanowanych zadań.
- Informacje o stanie floty dla administratorów. Dzięki temu rozwiązaniu administratorzy floty mogą niemal w czasie rzeczywistym wizualizować lokalizację pojazdów dostawczych i ich przystanków.
Jeśli trasa pojazdu jest znana, komponent widoku mapy wyświetla animację pojazdu w trakcie przemieszczania się po przewidywanej trasie.
Zobacz bibliotekę JavaScript do śledzenia floty.
|
5 |
Zakończ zadanie. |
Zadania dostawy w Fleet Engine możesz kończyć na 2 sposoby:
- Zamknij zadanie: zamknięcie zadania dotyczącego dostawy oznacza, że to zadanie nie jest już aktywne.
- Ustaw wynik zadania: po jego zamknięciu możesz wskazać, czy zadanie zostało wykonane, czy nie. Jest to ważny element finalizowania zadania, który umożliwia wyświetlanie wyniku dostawy w interfejsie użytkownika i zapewnia prawidłowe rozliczenie usługi Fleet Engine.
Pamiętaj, że podobnie jak w przypadku pojazdów dostawczych, elementy zadań pozostają aktywne w Fleet Engine przez 7 dni niezależnie od stanu, w którym zostały usunięte.
Zobacz Kończenie zadań.
|
Sekwencja zadań
Ten diagram przedstawia szczegółowy przepływ cyklu życia zadania.

Co dalej?
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-08-31 UTC.
[null,null,["Ostatnia aktualizacja: 2025-08-31 UTC."],[[["\u003cp\u003eThis documentation outlines how to create and manage scheduled tasks, representing driver activities, within the Google Maps Mobility scheduled tasks service.\u003c/p\u003e\n"],["\u003cp\u003eTasks, which can be either OPEN or CLOSED, are assigned to vehicle stops, and their progress is updated as the vehicle travels to and completes these stops.\u003c/p\u003e\n"],["\u003cp\u003eThe lifecycle of a task involves creation, scheduling by assigning to a vehicle stop, updating progress, sharing journey details with stakeholders, and finalization by closing and setting the outcome.\u003c/p\u003e\n"],["\u003cp\u003eFleet Engine provides tools for consumers to track shipment status and for administrators to monitor fleet locations and progress in near real-time.\u003c/p\u003e\n"],["\u003cp\u003eTo successfully use this service, prior familiarity with Fleet Engine, vehicle basics for on-demand services, and task basics for scheduled tasks is assumed.\u003c/p\u003e\n"]]],[],null,["# What is a scheduled task?\n\nThe documentation in this section shows how to create and work with scheduled\ntasks using the Google Maps Mobility scheduled tasks service. It assumes\nfamiliarity with the following:\n\n- **Fleet Engine** : You should be familiar with Fleet Engine implementation details, request mechanisms, and security. For that, see [What is the Fleet\n Engine service?](/maps/documentation/mobility/fleet-engine/essentials) and the security topics in [Set up Fleet Engine](/maps/documentation/mobility/fleet-engine/essentials/set-up-fleet).\n- **Vehicles basics** for on-demand services. See [Introduction to vehicles](/maps/documentation/mobility/fleet-engine/essentials/vehicles-intro).\n- **Task basics** for scheduled task services. See [Scheduled tasks](/maps/documentation/mobility/fleet-engine/essentials/tasks-intro)\n\nThe `Task` resource that you'll use is available in both [gRPC](/maps/documentation/mobility/fleet-engine/reference/tasks/rpc/maps.fleetengine.delivery.v1#task) and\n[REST](/maps/documentation/mobility/fleet-engine/reference/tasks/rest/v1/providers.tasks).\n\nIn Fleet Engine for scheduled tasks, a task represents a driver activity that\nfulfills a scheduled shipment or service for your consumers. You assign tasks to\nvehicle stop locations where they are to be completed, and the vehicle travels\nto those stops.\n\nA task has two possible states, `OPEN` or `CLOSED`. These states indicate\nwhether the task is active or not in the system. As the journey evolves for an\nactive task, you report this to Fleet Engine by updating the vehicle stop\nassociated with the task, which is either ENROUTE or ARRIVED. Once the driver\ncompletes tasks and leaves the stop, you remove the stop from the list of stops\non the vehicle. For more about\ntasks and their relationship to stops and vehicles, see\n[Scheduled tasks](/maps/documentation/mobility/fleet-engine/essentials/tasks-intro#basic_task_fields) in **Fleet Engine essentials** .\n\nLife of a task\n--------------\n\nIn order to track each task in Fleet Engine, you must first create a `Task`\nentity. See either [gRCP](/maps/documentation/mobility/fleet-engine/reference/tasks/rpc/maps.fleetengine.delivery.v1#task) or [REST](/maps/documentation/mobility/fleet-engine/reference/tasks/rest/v1/providers.tasks) for reference.\n\nThe following table describes an example end-to-end flow of a task created in\nyour system and its lifecycle stages in Fleet Engine. It assumes you have set up\nFleet Engine and have a vehicle for the task, with location updates\nenabled in the driver app. See [Driver SDK: Scheduled tasks](/maps/documentation/mobility/driver-sdk/scheduled).\n\n|---|-------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 1 | **Create tasks.** | At the beginning of the work cycle, the dispatcher or service administrator first creates a manifest for delivery tasks or services. From there, your system then creates the task entities using `CreateTrip` with required fields, such as the type of task and the location. It can also supply other configurations at this point, such as target time window, sharing task progress, and custom attributes. See [Create shipment tasks](/maps/documentation/mobility/fleet-engine/journeys/tasks/create-shipment-tasks) and the related guides. |\n| 2 | **Schedule tasks.** | When you schedule a task for delivery, you issue a delivery vehicle update request, which then updates the vehicle entity with a list of stops to travel. You assign each stop a list of tasks to be completed at the stop. See [Update delivery vehicle tasks](/maps/documentation/mobility/fleet-engine/journeys/tasks/update-tasks). |\n| 3 | **Update the task progress.** | Once the task is assigned to a delivery stop and active in Fleet Engine, your system notifies Fleet Engine about the vehicle progress as it approaches, arrives at, and completes the stop. With this information, Fleet Engine can best perform routing and status updates along the journey as well as throughout the day for the vehicle. See [Update vehicle stop status](/maps/documentation/mobility/fleet-engine/journeys/tasks/update-stops). |\n| 4 | **Share journeys.** | At the same time that the vehicle begins active navigation for the delivery day, you can share journey information with interested stakeholders. Fleet Engine makes both task details and vehicle location available to interested stakeholders in the following ways: - **Shipment information for consumers** . With this solution, consumers can see the status of their package along with the vehicle location information you permit them to view. See [Consumer sharing for scheduled tasks](/maps/documentation/mobility/journey-sharing/scheduled). - **Fleet status information for administrators** . With this solution, fleet administrators can visualize the locations of delivery vehicles and their stops in your fleets in near real time. If the route for a vehicle is known, the map view component animates that vehicle as it moves along its predicted path. See the [JavaScript Fleet Tracking library](/maps/documentation/mobility/operations/fleet-tracking). |\n| 5 | **Finalize the task.** | You finalize shipment tasks in Fleet engine in the following ways: - **Close the task**: Closing a shipment task indicates that that task is no longer active. - **Set the task outcome**: Once a task is closed, you indicate either a successful or failed task to indicate if the delivery took place or not. This is an important part of finalizing a task to show the delivery outcome in your consumer experience and to ensure correct billing for the Fleet Engine service. Keep in mind that, like delivery vehicles, task entities remain active within Fleet Engine for 7 days regardless of state, at which point they are removed. See [Finalize tasks](/maps/documentation/mobility/fleet-engine/journeys/tasks/finalize-tasks). |\n\nTask sequence flow\n------------------\n\nThe following diagram shows a detailed flow of a task lifecycle.\n\nWhat's next\n-----------\n\n- [Create shipment tasks](/maps/documentation/mobility/fleet-engine/journeys/tasks/create-shipment-tasks)"]]