Hi,
for a land register app I'm looking for an offline solution, because in Germany the Datenautobahn is not everwhere.
- from marketplace doesn't support draggable annotations.
- this ti.map patch from netfunctional works if I compile the example.
Now you have generated my own mbtiles with the perl script 'Geo-OSM-Tiles' and with mbutil. The result is a sqlite DB with suffix 'mbtiles'.
If I embed my mbtilesI see the apple map,but not my OSM map:
var MapNF = require('ti.map'); var mbtilesDB = Ti.Filesystem.getFile(Ti.Filesystem.getResourcesDirectory(), 'assets', 'enkheim.mbtiles').nativePath; self.mapview = MapNF.createView({ mapType : MapNF.STANDARD_TYPE, region : { latitude : 50.1559955, longitude : 8.7657151, animate : true, latitudeDelta : 0.005, longitudeDelta : 0.005 }, tileDB : mbtilesDB });This is copied and modified example.
Question:
How can I solve?
- other module
- wrong format of my db ?
Rainer