Hi Coulson, GeoDjango is just Django. You can write an application that checks upon initialization which type of environment it's located and then you can set the DATABASES property on settings.py.
Using the technique I've told you above, you can store GIS data in two databases (for web application you can use PostgreSQL with PostGIS) and for offline use SQLite. Natively, Django does not speaks "shapefile", so you will need to create a routine to export your data to shapefile. Anyways, you can always export your data to SQLite databases and use GeoDjango to render those data to OpenLayers in GeoJSON. Should work on any modern smartphone. On Thu, Sep 20, 2012 at 11:36 AM, Coulson Thabo Kgathi <[email protected]>wrote: > Hi guys i want to use geodjango for an application that gives map > locations but offline using shapefiles and geodjango, any information that > i can be refered to would be appreciated. I dont want to use google maps > because its wil be used offline > > thank you > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/django-users/-/u2kiG0kJd0UJ. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- George R. C. Silva Desenvolvimento em GIS http://geoprocessamento.net http://blog.geoprocessamento.net -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

