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 ステートメントを追加します。
import GoogleMaps
import GoogleRidesharingDriver
application(_:didFinishLaunchingWithOptions:)
メソッドに次のコードを追加します。
GMSServices.provideAPIKey("YOUR_API_KEY")
Objective-C
次のように、API キーを AppDelegate.m
に追加します。
次の import ステートメントを追加します。
@import GoogleMaps;
@import GoogleGoogleRidesharingDriver;
application:didFinishLaunchingWithOptions:
メソッドに次のコードを追加します。
[GMSServices provideAPIKey:@"YOUR_API_KEY"];
次のステップ
認証トークンを作成する
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-12-22 UTC。
[[["わかりやすい","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 UTC。"],[[["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`)."]]],[]]