開始使用 Places UI Kit (實驗功能)

本頁說明如何取得 API 金鑰、啟用 Places UI Kit,以及載入支援該套件的程式庫。

取得 API 金鑰並啟用 Places UI Kit

使用 Places UI Kit 前,您必須:

  • 使用帳單帳戶建立 Cloud 專案。
  • 啟用 Places UI 套件。
  • 取得 API 金鑰。

詳情請參閱「設定 Google Cloud 專案」一文。

啟用 Places UI Kit

取得 API 金鑰

載入必要的程式庫

如要載入支援 Places UI Kit 的程式庫,請先將內嵌 Bootstrap 載入器加進應用程式程式碼,載入 Maps JavaScript API,如以下程式碼片段所示:

  <script>
    (g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})({
      key: "YOUR_API_KEY",
      v: "alpha",
      // Use the 'v' parameter to indicate the version to use (weekly, beta, alpha, etc.).
      // Add other bootstrap parameters as needed, using camel case.
    });
  </script>
    

接下來,請使用 await 運算子,從 async 函式內呼叫 importLibrary(),如下所示:

  // Import the Places Library for PlaceDetailsElement and PlaceListElement
  const {PlaceDetailsElement, PlaceListElement} = await google.maps.importLibrary('places');

  // Import the Elevation Library for ElevationElement
  const {ElevationElement} = await google.maps.importLibrary('elevation');
  

如要進一步瞭解如何載入 Maps JavaScript API,請參閱本文

後續步驟