3

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?

SylviA
  • 1,577
  • 9
  • 13
rotzoll
  • 106
  • 6
  • Have you checked the "managing prebundled map packages" chapter from the website: http://developer.skobbler.com/getting-started/android#sec025? – SylviA Jan 14 '16 at 12:48
  • 1
    Ah OK the part about the needed "Meta Files" was missing in the example on the developer blog. Now its working. Thanks. – rotzoll Jan 22 '16 at 13:26
  • Hello Rotzoll, I'm ionic developer and i want to render same Skobbler map for android platform. so any native android side coding are required?. or only cordova plugin fix rendering map? please give me example how you are loading map. – KAUSHAL J. SATHWARA Dec 20 '16 at 13:20
  • Hello, I'm hybrid application developer and i want to use skobbler map in my ionic project so please tell me which one cordova plugin you are using for that. – KAUSHAL J. SATHWARA Dec 22 '16 at 09:14

1 Answers1

2

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

SylviA
  • 1,577
  • 9
  • 13
  • Hi sylvia, please help me how to Skobble map render using cross platform. i had installed plugin successfully but I'm not able to loading map. – KAUSHAL J. SATHWARA Dec 20 '16 at 13:23
  • Hello, I'm hybrid application developer and i want to use skobbler map in my ionic project so please tell me which one cordova plugin you are using for that. – KAUSHAL J. SATHWARA Dec 22 '16 at 09:14