I am using the Skobbler Android SDK within a cordova plugin. It works fine in ONLINE Mode, showing me the map view. But my goal is to provide maps for OFFLINE navigation. So I followed the following tutorial on prepared maps:
http://sdkblog.skobbler.com/creating-an-app-with-a-pre-bundled-map/
But now in OFFLINE MODE with having added the map files of my area to the SKMaps.zip when trying to display the map view the app crashes with the following error:
libc - Fatal signal 11 (SIGSEGV) at 0x00000044 (code=1)
Any idea what to do here and make it work?
Is there a better tutorial on how to work with prepared maps?
The SDK requires some meta files in order to be able to render the map.
SKMetaDataListener provides a callback ( public void onMetaDataDownloadFinished(int versionNumber) ) that tells you when these meta files are ready. Only after receiving this callback the map can be successfully rendered. See: http://developer.skobbler.com/getting-started/android#sec022a
User contributions licensed under CC BY-SA 3.0