Combain Indoor AI Navigation Plugin

This plugin is a wrapper for the Combain Indoor AI Navigation SDK. It provides a simple way to integrate the SDK into your Flutter app.

Getting Started

This is all the code needed to start receiving indoor location updates from the Combain Indoor AI Navigation SDK.

Future<void> initIndoorNavigationSDK() async {
  var config = FlutterIndoorNavigationSDKConfig(
      apiKey: Secrets.apiKey,
      syncingInterval: SyncingInterval(interval: 0),
      routingConfig: FlutterRoutingConfig(
          routableNodesOptions:
              FlutterRoutableNodesOptions.allExceptDefaultName));

  val aiIndoorNavigationSDK = await FlutterIndoorNavigationSDK.create(config);
  await aiIndoorNavigationSDK.start();
}

Demo

For a demo project see gitlab.combain.com/Hugo-Persson/flutter-ai-navigation-demo