芬图科技 IndoorAtlas
Close 芬图科技 IndoorAtlas

配置地图

免费创建您的开发者账户,使用网站工具创建地点和楼层,上传并匹配室内图,详见操作指南。

网站配置工具 操作指南

采集数据

免费下载采集工具 MapCreator2,安装在安卓手机上并至现场完成数据采集。为保证最佳采集质量,请参阅操作指南,选择合适的安卓设备并合理采集数据。

MapCreator2下载 操作指南

集成 SDK

我们提供原生安卓和苹果 SDK 以及 Unity 和 Cordova 插件。只需几行代码,即可轻松完成集成。请参阅开发指南和API文档,里面有详细的步骤和样例代码。

SDK下载 API文档 开发指南
1 - (void)authenticateAndRequestLocation
2  {
3    // Create IALocationManager and point delegate to receiver
4    self.manager = [IALocationManager sharedInstance];
5    self.manager.delegate = self;
6    
7    // Set IndoorAtlas API key and secret
8    [self.manager setApiKey:kAPIKey andSecret:kAPISecret];
9   
10   // Request location updates
11   [self.manager startUpdatingLocation];
12  }
1  manager = IALocationManager.create(this);
2  
3  manager.requestLocationUpdates(IALocationRequest.create(), listener);
4  
5  @Override
6  public void onLocationChanged(IALocation location) {
7    android.location.Location l = location.toLocation();
8  }