Hi!
minZoom = 10
maxZoom = 18
bbox=(103.830113, 1.305715, 103.833557, 1.302637)

Try reordering the coordinates:
bbox=(103.830113, 1.302637, 103.833557, 1.305715)
The code requires the lower number comes first.
You can fix this automatically by adding this code as the first line in
render_tiles (line ~120)
bbox = ( min(bbox[0], bbox[2]), min(bbox[1], bbox[3]), max(bbox[0], bbox[2]), max(bbox[1], bbox[3]) )

Hermann
_______________________________________________
Mapnik-users mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/mapnik-users

Reply via email to