freifunkmanager/public/components/config.js

13 lines
280 B
JavaScript
Raw Normal View History

2016-07-06 22:52:31 +02:00
'use strict';
angular.module('config', [])
.factory('config', function() {
return {
2016-07-09 02:58:47 +02:00
api: 'https://mgmt.ffhb.de/api',
2016-07-06 22:52:31 +02:00
map: {
view: {lat: 53.0702, lng: 8.815}
},
2016-07-09 02:58:47 +02:00
geojson: 'https://meshviewer.breminale.ffhb.de/data/meshviewer.geojson',
2016-07-06 22:52:31 +02:00
refresh: 60000
};
});