Corpus for making web map applications.
Project description
Corpus for making web map applications.
Installation
To get the latest stable release from PyPi
pip install django-webmap-corpus
To get the latest commit from GitHub
pip install -e git+https://github.com/PetrDlouhy/django-webmap-corpus.git#egg=webmap
Add webmap to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'author',
'colorful',
'positions',
'django.contrib.gis',
'constance.backends.database',
'constance',
'import_export',
'webmap',
)
Add Author middleware
MIDDLEWARE_CLASSES = (
...,
'author.middlewares.AuthorDefaultBackendMiddleware',
)
Add Constance settings
CONSTANCE_APP_NAME = "webmap"
CONSTANCE_CONFIG = {
'MAP_BASELON': (14.4211, u'zeměpisná délka základní polohy mapy'),
'MAP_BASELAT': (50.08741, u'zeměpisná délka základní polohy mapy'),
'MAP_BOUNDS': ("14.22, 49.95, 14.8, 50.18", u'hranice zobrazení mapy'),
'DEFAULT_STATUS_ID': (2, u'id defaultního statusu'),
}
CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend'
Add the webmap URLs to your urls.py
urlpatterns = patterns('',
...
url(r'^webmap/', include('webmap.urls')),
)
Don’t forget to migrate your database
./manage.py migrate webmap
Note: If you don’t have Constance migrated yet, remove the ‘webmap’ line from INSTALLED_APPS, then migrate Constance and then the line re-add and migrate again.
Usage
TODO: Describe usage or point to docs. Also describe available settings and templatetags.
Contribute
If you want to contribute to this project, please perform the following steps
# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 django-webmap-corpus
make develop
git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-webmap-corpus-0.2.tar.gz
.
File metadata
- Download URL: django-webmap-corpus-0.2.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59a239778b96debac1909b1822ebaf8a01974014edafeab4f3b7c8872bbc2dee |
|
MD5 | e8d1927c8018d5aaccf7d16bf8b56ddd |
|
BLAKE2b-256 | 6adc8895596ae4eb11e2b59dd583a0ef4ee9e7298ed620066fc7db22ecabcbda |