自訂標記

本文說明如何在用於消費者網頁式運送追蹤應用程式中,自訂車輛和地點標記。

使用 JavaScript Consumer SDK,您可以自訂新增至地圖的兩種標記的外觀與風格:

您可以選擇以下其中一種方法:

  • 簡易:指定要套用至所有相同類型標記的 MarkerOptions 物件。然後,Consumer SDK 會在以下兩種情況套用樣式:將標記加入地圖之前,以及標記使用的資料已變更。
  • 進階:指定自訂函式。自訂化功能可讓您根據資料設定標記樣式,並為標記新增互動功能,例如點擊處理。具體來說,消費者 SDK 會將與標記所代表物件類型 (車輛或目的地) 相關的資料傳送至自訂函式。這樣一來,標記樣式就能根據標記元素本身的目前狀態進行變更,例如,到達目的地前所需的預定停靠站數量。您甚至可以彙整來自 Fleet Engine 以外來源的資料,並根據該資訊設定標記樣式。

簡單範例:使用 MarkerOptions

以下範例說明如何使用 MarkerOptions 物件設定車輛標記的樣式。本例將標記的透明度設為 50%。

JavaScript

deliveryVehicleMarkerCustomization = {
  opacity: 0.5
};

TypeScript

deliveryVehicleMarkerCustomization = {
  opacity: 0.5
};

進階範例:使用自訂函式

下例說明如何設定車輛標記樣式,在抵達已排程工作的停靠站前,顯示車輛剩餘的停靠站計數。

JavaScript

deliveryVehicleMarkerCustomization =
  (params) => {
    var stopsLeft = params.taskTrackingInfo.remainingStopCount;
    params.marker.setLabel(`${stopsLeft}`);
  };

TypeScript

deliveryVehicleMarkerCustomization =
  (params: ShipmentMarkerCustomizationFunctionParams) => {
    const stopsLeft = params.taskTrackingInfo.remainingStopCount;
    params.marker.setLabel(`${stopsLeft}`);
  };

在標記中加入點擊處理方式

您可以為任何標記新增點擊處理,例如下列車輛標記的範例。

JavaScript

deliveryVehicleMarkerCustomization =
  (params) => {
    if (params.isNew) {
      params.marker.addListener('click', () => {
        // Perform desired action.
      });
    }
  };

TypeScript

deliveryVehicleMarkerCustomization =
  (params: ShipmentMarkerCustomizationFunctionParams) => {
    if (params.isNew) {
      params.marker.addListener('click', () => {
        // Perform desired action.
      });
    }
  };

顯示標記的其他資訊

您可以使用 InfoWindow 顯示車輛或位置標記的其他資訊。以下範例會建立 InfoWindow 並附加至車輛標記:

JavaScript

// 1. Create an info window.
const infoWindow = new google.maps.InfoWindow(
    {disableAutoPan: true});

locationProvider.addListener('update', e => {
  const stopsCount =
      e.taskTrackingInfo.remainingStopCount;
  infoWindow.setContent(
      `Your vehicle is ${stopsCount} stops away.`);

  // 2. Attach the info window to a vehicle marker.
  // This property can return multiple markers.
  const marker = mapView.vehicleMarkers[0];
  infoWindow.open(mapView.map, marker);
});

// 3. Close the info window.
infoWindow.close();

TypeScript

// 1. Create an info window.
const infoWindow = new google.maps.InfoWindow(
    {disableAutoPan: true});

locationProvider.addListener('update', (e: google.maps.journeySharing.FleetEngineShipmentLocationProviderUpdateEvent) => {
  const stopsCount =
      e.taskTrackingInfo.remainingStopCount;
  infoWindow.setContent(
      `Your vehicle is ${stopsCount} stops away.`);

  // 2. Attach the info window to a vehicle marker.
  // This property can return multiple markers.
  const marker = mapView.vehicleMarkers[0];
  infoWindow.open(mapView.map, marker);
});

// 3. Close the info window.
infoWindow.close();

後續步驟