Search code examples
androidapidictionaryosmdroid

android mapping using osmDroid mapping api


I want to develope android mapping app using osmDroid mapping api with offline and online capabilites, but I couldn't find many tutorials about it, so If any one have any link to tutorials that use osmdroid mapping api offline or online. I have write a small app just to display the map from the default provider but, the application run but no map is displayed (only squers) what is wrong?? the code:

MapView map = new MapView(this, 256);
    map.setClickable(true);
    map.setBuiltInZoomControls(true);
    setContentView(map);

the controls are displayed!!!!!!


Solution

  • Or maybe missing the INTERNET (or another) permission in the manifest file?

    HowToUseJar