Reputation: 137
I'm in the process of generating tiles with generate_tiles.py and I'd like to write a Python app to display them instead of having a web interface. Does anything like that already exist or is there information somewhere on how to write such an app myself?
Upvotes: 12
Views: 16390
Reputation: 9738
Quoting the OP:
I'd like to write a Python app to display them instead of having a web interface
I have the same request (more specifically, I need to show an interactive map within an already existing GTK+ desktop application), I didn't see the question answered here, so I went to look for direct reference information. There I see three options:
Paulo Scardine very complete overview focuses on web interface, and does not mention them.
Upvotes: 2
Reputation: 77271
You can look/edit your map using a desktop application like Tilemill or QGIS (I can't really guess why are you generating tiles if it is not for a web application).
Tilestache has an internal webserver you can use for testing, it's easy to get it running just using config files.
A few pointers to get you started (or keep you busy for a few weeks):
Server side libraries and applications
Client side libraries
Tools for custom map creation
Markers
Some related videos from PyCon2012
Some interesting applications to get you inspired:
Upvotes: 27