Warning
This project has been merged into geonode-mapstore-client one.
Django Adapter for MapStore2
- If you are facing one or more of the following:
- TODO,
- TODO,
TODO
We love contributions, so please feel free to fix bugs, improve things, provide documentation. Just follow the guidelines and submit a PR.
- Python 2.7, 3.4, 3.5, 3.6
- Django 1.11, 2.0
Install with pip:
pip install django-mapstore-adapter
Add mapstore2_adapter to your INSTALLED_APPS
INSTALLED_APPS = (
...
'mapstore2_adapter',
)
If you need an OAuth2 provider you'll want to add the following to your urls.py. Notice that mapstore2_adapter namespace is mandatory.
urlpatterns = [
...
url(r'^o/', include('mapstore2_adapter.urls', namespace='mapstore2_adapter')),
]
See CHANGELOG.md.
The full documentation is on Read the Docs.
django-mapstore-adapter is released under the terms of the Simplified BSD license. Full details in LICENSE
file.