Hi all, I'am new in ownCloud, I successfully installed and configured ownCloud 9.0 (Ubuntu 14.04, Apache2, MySQL) and I want create plugin enables ownCloud to show map tiles from mbtiles files directly in the browser, using LeafletJS map library and php-mbtiles server. Initially I use simple tile cache (stored in ownCloud) and display them on the map using code:
var downloadUrl = OC.generateUrl('/apps/files/ajax/download.php') + '?dir=', dirUrl = '/geography/', cacheUrl = '{z}/{x}&files={y}.png', tileCacheUrl = downloadUrl + dirUrl + cacheUrl; L.tileLayer( tileCacheUrl, { zIndex: 10 }).addTo(map); But using of tile cache in ownCloud have one big problem - many files and folders that it takes a lot of time when copying or synchronization. There is exist special data format for store tile cache - mbtiles (http://wiki.openstreetmap.org/wiki/MBTiles). Example of web app with Leaflet map and php-mbtiles-server - https://github.com/spatialhast/php_mbtiles_server (include example mbtiles data). I created template of ownCloud plugin - https://github.com/spatialhast/mbtilesviewer, but have problem with integration of php_mbtiles_server (https://github.com/bmcbride/PHP-MBTiles-Server). Please help integrate PHP-MBTiles-Server into ownCloud plugin. Thanks! -- View this message in context: http://owncloud.10557.n7.nabble.com/ownCloud-plugin-for-preview-mbtiles-files-on-map-tp16874.html Sent from the Developers mailing list archive at Nabble.com. _______________________________________________ Devel mailing list Devel@owncloud.org http://mailman.owncloud.org/mailman/listinfo/devel