为驱动程序配置移动应用项目和 Google Cloud Console 项目 SDK,请按以下步骤操作:
- 如果您没有移动项目的 Google Cloud 控制台开发项目和 API 密钥,则需要设置一个。如需了解详情,请参阅 创建 Fleet Engine 项目。
- 在 Google Cloud 控制台中,选择同一个 Google Cloud 控制台项目, 您用于 Fleet Engine 的 API 密钥。
- 选择 API 和服务,按地图过滤,然后搜索并 启用 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"];