[GIS] Correct Use of MBTiles PHP Script

mbtilesPHPweb-mapping

I have installed the OSGeo4W web server tools on a Server 2008 machine, and I would like to serve MBTiles to Leaflet. I have tried these:

Zverik's mbtiles-php

Infostream's mbtiles-php fork

The required PHP files and .htaccess were placed in a directory under \htdocs and Apache happily serves files from there. However, I am unable to form any URL that retrieves tiles. Firebug shows a '200 OK' on the tile request, but no content.

Given that the mbtiles database and the script reside in a directory called 'mbtiles', can anyone inspect the scripts and explain how to properly form the URL? A proper L.tileLayer string for Leaflet would also be accepted.

Also, any other minimal configuration solution (that will run on the OSGeo4W install) that will serve my .mbtiles to Leaflet would be accepted.

Best Answer

Given 'mbtiles' as the directory, the correct URL to get tiles with Leaflet js is:

.../mbtiles/[filename without extension]/{z}/{x}/{y}.png

As a side note for anyone attempting to use these on an OSGeo4W install, you may need to AllowOverride in httpd.conf and uncomment extension=php_gd2.dll in your php.ini file.