Migrating to TomTom Orbis Maps
TomTom Orbis Maps is your go-to collaborative map that brings together a world of resources, delivering a broad set of use cases to solve your biggest challenges.
Based on a fusion of powerful sources, including OpenStreetMap and Overture Maps, TomTom Orbis Maps delivers global, comprehensive, and constantly updated maps, providing you with the most accurate and relevant data.
In this guide, we’ll walk you through its utilization through Navigation SDK, empowering you to leverage the full potential of TomTom Orbis Maps within your applications.
Project setup
-
Configure the project as described in the project setup guide.
-
Import the necessary frameworks using the following instructions, based on your preferred package manager. This tutorial uses the
TomTomSDKFeatureToggle
module.Swift Package Manager
. Open your App’s target and navigate to General > Frameworks, Libraries, and Embedded Content.
- Add the following TomTomSDK library from the provided code snippet. Once the project is set up, import the
TomTomSDKFeatureToggle
framework into your code.
CocoaPods
. Add the following module to your project’s
Podfile
: +1TOMTOM_SDK_VERSION = '0.66.0'23target 'YourAppTarget' do4 use_frameworks!5 pod 'TomTomSDKFeatureToggle', TOMTOM_SDK_VERSION6end- Install the dependencies by executing the following commands in the project directory:
pod repo-art update tomtom-sdk-cocoapodspod install --repo-update
- Import the following framework:
import TomTomSDKFeatureToggle
- Add the following TomTomSDK library from the provided code snippet. Once the project is set up, import the
-
Enable the TomTom Orbis Map feature in your code.
FeatureToggle.shared.enable(feature: .tomtomOrbisMapFeature)Now that you’ve completed the project setup, here is what you can do next.
Build a simple navigation application
You can use all the relevant Navigation SDK APIs and built-in UI components to build a navigation application.
Learn more
For more details on coverage and support refer to the API documentation:
If you’re looking for information on specific fields and features supported in the Navigation SDK, consult the API Reference for any exceptions.