diff options
author | Marius Halden <marius.h@lden.org> | 2017-05-27 23:59:45 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2017-05-27 23:59:45 +0200 |
commit | 5a27677d1965ef48a3eb09befd349735b9e4b8ae (patch) | |
tree | 3381ca1b043a93c79c6bfbd19955e2025474f6f7 /cobrands/fiksgatami/config.js | |
parent | 90eaa6fc820bfeac9b30ed5ef102fcb716847bb0 (diff) |
config.js for fiksgatami
Diffstat (limited to 'cobrands/fiksgatami/config.js')
-rw-r--r-- | cobrands/fiksgatami/config.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cobrands/fiksgatami/config.js b/cobrands/fiksgatami/config.js new file mode 100644 index 0000000..a3f22e4 --- /dev/null +++ b/cobrands/fiksgatami/config.js @@ -0,0 +1,38 @@ +var CONFIG = { + // Language of templates to use ( should be name of directory under www/templates/ ) + LANGUAGE: 'nb', + + // Name of app to use in alert dialog titles amongst other things + APP_NAME: 'FiksGataMi', + + // URL of the fixmystreet install to report to. See also config.xml-example + // Make sure it does *not* end with a slash. + FMS_URL: 'http://dev.fiksgatami.no', + + // Name of the cobrand to use for templates, stylesheets etc. + // Cobrand files should be placed in a new directory within www/cobrands/ + // Leave as null to use the default templates. + COBRAND: null, + + // Type of map to use; possible options currently are 'OSM', 'Bing' or + // 'FMS' (UK only). The default is OSM. + MAP_TYPE: 'OSM', + + // namespace for storing drafts etc in. Should not need to change + NAMESPACE: 'fiksgatami', + + // directory to store draft photos in. Should not need to change + FILES_DIR: 'photos', + + // accuracy in meters required before geolocation is successful + ACCURACY: 100, + + // how long, in milliseconds, before photo uploads timeout. Defaults to 120000 ( 2 minutes ) + UPLOAD_TIMEOUT: 120000, + + // Set to 1 to log debug messages to the console + DEBUG: 0, + + // Bing Maps API key if needed + BING_MAPS_API_KEY: '' +}; |