In this section, a guide to set up development environment for FATOS SDK for Android will be introduced. The functions of the SDK are largely composed of map, search, and route planning related operations. The map function can control the map layers, settings, and operation. To use "FATOS SDK for Android", you must request an SDK key and then apply that key to the source. If you want an SDK key, please go to https://console.fatos.biz and request an SDK key after sign up.
Please let us know if you have any technical problems using our SDK
Contact : sales@fatoscorp.com
For a flexible navigation feature to be used in your project, your "Application class" and "MainActivity" must be inherited from "ANaviApplication class" and "FMBaseActivity class" respectively.
@Override
public class TNaviApplication extends ANaviApplication {
private Context m_Context;
@Override
public void onCreate() {
...
}
}
public class TNaviMainActivity extends FMBaseActivity {
...
}
FATOS SDK for Android requires that Navi Engine initialize. We strongly recommend you do so at onCreate() of MainActivity that extends FMBaseActivity.