Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

Version 1 Next »

Navmii SDK allows you to setup the way the navigation guidance will be provided. It's possible throughout NMNavigationService's guidanceSettings property. You can set the guidance output either to text or switch it off. If you set the NMGuidanceSettings' guidanceOutput property to NMGuidanceOutputText, you'll be able to receive NSString instances with navigation guidance throughout NMNavigationServiceListener protocol's onGuidanceTextReady: method.

- (void)onGuidanceTextReady:(NSString *)text {
	NSLog(@"new guidance - %@", text);
}

You can also set guidance language via locale property. To get the list of all languages supported by the SDK use supportedLocales property. 

//sets guidance language to american english
NMGuidanceSettings *settings = [NMSdk sharedInstance].navigationService.guidanceSettings;
[settings setLocale:@"en-US"];



  • No labels