設定 Google Cloud 控制台專案
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
如要為 Driver SDK 設定行動應用程式專案和 Google Cloud 控制台專案,請按照下列步驟操作:
- 如果您沒有 Google Cloud 控制台開發專案和行動專案的 API 金鑰,就需要設定這兩項項目。詳情請參閱「建立 Fleet Engine 專案」一文。
- 在 Google Cloud 控制台中,選取與 Fleet Engine 相同的 Google Cloud 控制台專案和 API 金鑰。
- 選取「API 和服務」,然後依「地圖」篩選,並搜尋及啟用 Maps SDK for iOS。
將 API 金鑰加進專案
以下範例說明如何在 Xcode 中將 API 金鑰新增至專案:
Swift
將 API 金鑰新增到您的 AppDelegate.swift
中,如下所示:
新增下列匯入陳述式:
import GoogleMaps
import GoogleRidesharingDriver
請將以下內容新增至 application(_:didFinishLaunchingWithOptions:)
方法:
GMSServices.provideAPIKey("YOUR_API_KEY")
Objective-C
將 API 金鑰新增到您的 AppDelegate.m
中,如下所示:
新增下列匯入陳述式:
@import GoogleMaps;
@import GoogleGoogleRidesharingDriver;
請將以下內容新增至 application:didFinishLaunchingWithOptions:
方法:
[GMSServices provideAPIKey:@"YOUR_API_KEY"];
後續步驟
建立驗證權杖
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-12-22 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-12-22 (世界標準時間)。"],[[["To use the Driver SDK, you must first set up a Google Cloud console project and an API key for your mobility project if you haven't already."],["Ensure the same Google Cloud project and API key used for Fleet Engine are selected, and enable the Maps SDK for iOS within the APIs & Services section."],["Integrate your API key into your Xcode project by adding it to `AppDelegate` and utilizing necessary import statements (`GoogleMaps`, `GoogleRidesharingDriver`)."]]],[]]