/
Guidance (v2.0.x)

Guidance (v2.0.x)

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 the 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"];

Currently supported languages:

  • Czech
  • Danish
  • English (UK)
  • English (US)
  • Finnish
  • French (France)
  • German
  • Italian
  • Korean
  • Norwegian
  • Polish
  • Portugese (Brazil)
  • Portugese (Portugal)
  • Russian
  • Spanish (Spain)
  • Swedish
  • Turkish


Related content

Navigation Service
Navigation Service
More like this
Routes (v2.0.x)
Routes (v2.0.x)
More like this
Navmii SDK v.2.1.x – 2.2.x for iOS
Navmii SDK v.2.1.x – 2.2.x for iOS
More like this
Route geofencing (v2.1.x - iOS)
Route geofencing (v2.1.x - iOS)
More like this
Navigation Info
Navigation Info
More like this
Route Navigation (v2.1.x – 2.2.x)
Route Navigation (v2.1.x – 2.2.x)
More like this