配置 Google Cloud 控制台项目
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
如需为 Driver SDK 配置移动应用项目和 Google Cloud 控制台项目,请按以下步骤操作:
- 如果您没有移动项目的 Google Cloud 控制台开发项目和 API 密钥,则需要设置一个。如需了解详情,请参阅创建车队引擎项目。
- 在 Google Cloud 控制台中,选择您为车队引擎使用的 Google Cloud 控制台项目和 API 密钥。
- 选择 API 和服务,按 Google 地图进行过滤,然后搜索并启用 Maps SDK for iOS。
将您的 API 密钥添加到项目中
以下示例展示了如何在 Xcode 中将 API 密钥添加到项目中:
Swift
按照以下方法向 AppDelegate.swift
添加 API 密钥:
添加以下 import 语句:
import GoogleMaps
import GoogleRidesharingDriver
将以下代码添加到 application(_:didFinishLaunchingWithOptions:)
方法中:
GMSServices.provideAPIKey("YOUR_API_KEY")
Objective-C
按照以下方法向 AppDelegate.m
添加 API 密钥:
添加以下 import 语句:
@import GoogleMaps;
@import GoogleGoogleRidesharingDriver;
将以下代码添加到 application:didFinishLaunchingWithOptions:
方法中:
[GMSServices provideAPIKey:@"YOUR_API_KEY"];
后续步骤
创建身份验证令牌
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):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"]],["最后更新时间 (UTC):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`)."]]],[]]