Navmii SDK  2.2.0
Write yourself a navigation system in iOS
Navmii Turn-by-Turn SDK for iOS

The turn-by-turn navigation SDK is a cross-platform toolkit that allows you to create your own navigation system with a custom set of features, look, and behavior.

This documentation describes the API for the Objective-C language.

NMSdk initialization example

ViewController.m

@interface ViewController () <NMSdkStateChangeListener>
{
NMMapView *mapView;
NMSdk *navmiiSDK;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
mapView = [[NMMapView alloc] initWithFrame:self.view.bounds];
[self addSubview:mapView];
navmiiSDK = [[NMSdk alloc] init];
[navmiiSDK addSdkStateChangeListener:self];
[navmiiSDK setMapView:mapView];
[navmiiSDK startWithSettings:nil];
}
NMSdkStateChangeListener-p
Definition: NMSdkStateChangeListener.h:3
NMSdk
Definition: NMSdk.h:62
NMMapView
Definition: NMMapView.h:35