brouter-web/keys.template.js
Norbert Renner c2369acde0 Add additional layers from own definitions
- in JOSM format with some exceptions
- basic WMS support
- API key handling
2019-03-16 13:09:14 +01:00

22 lines
603 B
JavaScript

(function() {
// COPYING: Please get your own API keys from the sites listed below
BR.keys = {
// Bing maps, https://www.microsoft.com/maps/default.aspx
bing: '',
// DigitalGlobe, https://developer.digitalglobe.com/maps-api/#plans
digitalGlobe: '',
// Thunderforest, https://thunderforest.com/pricing/
thunderforest: '',
// Strava API token in case you want to display Strava segments
strava: '',
// OpenMapSurfer (OpenRouteService API), https://openrouteservice.org/plans/
openrouteservice: ''
};
})();