diff options
Diffstat (limited to 'chimere/settings.py')
-rw-r--r-- | chimere/settings.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chimere/settings.py b/chimere/settings.py index 503d681..3281277 100644 --- a/chimere/settings.py +++ b/chimere/settings.py @@ -13,9 +13,14 @@ EMAIL_HOST = 'localhost' TINYMCE_URL = SERVER_URL + 'tinymce/' -# chimere specific +## chimere specific ## +# center of the map DEFAULT_CENTER = (-1.679444, 48.114722) +# projection used by the main map +# most public map providers use spherical mercator : 900913 EPSG_PROJECTION = 900913 +# projection displayed to the end user by openlayers +# chimere use the same projection to save its data in the database EPSG_DISPLAY_PROJECTION = 4326 # to restrict the map to a defined bounding box set it here RESTRICTED_EXTENT = None |