我们正在构建 phonegap 应用程序,我们想使用 Leaflet.js v 0.5 放置地图我们尝试通过 SQLitePlugin 读取 .mbtiles 文件
https://github.com/chbrody/Cordova-SQLitePlugin
函数 buildMap() { var db = window.sqlitePlugin.openDatabase("file:///sdcard/one_tile.mbtiles"); document.body.removeChild(msg);
var map = new L.Map('map', { center: new L.LatLng(40.6681, -111.9364), zoom: 11 }); var lyr = new L.TileLayer.MBTiles('', {maxZoom: 14, scheme: 'tms'}, db); map.addLayer(lyr); }
但是 sqlitePlugin.openDatabase 没有找到 .mbtiles 文件