Mbtiles服务插件,通过web服务接口访问mbtiles地图数据。
cordova工程安装本插件后, 调用start
接口,传入mbtiles文件绝对路径与服务端口
cordova.plugins.MbtileServer.start(filePath, port, success, fail)
成功后即可通过http://localhost:port/z/x/y.png
接口访问瓦片地图数据。
注意配置文件读写和网络权限。
见 使用说明
见 接口规范
见常见问题
-
安装plugman
$npm install -g plugman $plugman -v platform 3.0.1
-
创建插件
plugman create --name MbtileServer --plugin_id cordova-plugin-mbtileserver --plugin_version 0.1.0
-
添加插件平台
mv MbtileServer cordova-plugin-mbtileserver cd cordova-plugin-mbtileserver plugman platform add --platform_name android
-
生成package.json
plugman createpackagejson .
-
修改添加必要的参数