So, I generated a map on tilemill and exported the mbtiles file. I've setup Tilestache, and all required dependencies. I tried the OSM preview provided by default which worked fine.
When I tried to load a MBtiles file through the Tilestache config file(.cfg), the terminal doesn't show me any errors (infact it shows me all the HTTP calls perfectly fine), but the preview output at 127.0.0.1:portno/{layername}/preview.html seems to be a blank map!
When I did explicit HTTP calls to specific png images, the images are empty. In other words, I see empty outputs from it. I also tried different MBtiles files and I'm still facing the same output.
What could be the problem here??
My Tilestache config file:
{
"cache":
{
"name": "Test"
},
"layers":
{
"roads":
{
"provider": {"name": "mbtiles", "tileset": "ward.mbtiles"},
"preview": {"zoom": 15, "ext": "png"}
}
}
}