Last updated:
0 purchases
flutter ai indoor navigation
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();
}
copied to clipboard
Demo #
For a demo project see https://gitlab.combain.com/Hugo-Persson/flutter-ai-navigation-demo
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.