Prateek Bhatt
Prateek Bhatt

Reputation: 67

how to obtain license key for here maps api

I am not able to find the license key from here maps. I have my app ID and app Code already but not the license key.

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    NMAApplicationContext.setAppId(yourAppID, appCode: yourAppCode, licenseKey: yourLicenseKey)
    return true
}

Upvotes: 2

Views: 1853

Answers (2)

Parth Adroja
Parth Adroja

Reputation: 13514

You can get the API key from here after you sign up.

When you sign up, A project will be created for you.

You will need to add your bundle id and generate the API key from the project settings(Project Page).

Also, when you create the app you will also receive and email which guides you through the steps.

Upvotes: -1

DeepakMK14
DeepakMK14

Reputation: 131

For Starter SDKs there is no License key available.

You need to register for Premium SDK

Upvotes: 9

Related Questions