Skip to content

Commit

Permalink
Merge pull request #334 from GIScience/release-v0.5.3
Browse files Browse the repository at this point in the history
Release v0.5.3
  • Loading branch information
TheGreatRefrigerator committed May 18, 2020
2 parents c267738 + c3fa3a5 commit e902508
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Deprecated
### Removed-->

## [v0.5.3] - 2020-05-18

### Added
- CycleOSM baselayer

## [v0.5.2] - 2020-05-12

### Fixed
Expand Down
7 changes: 6 additions & 1 deletion app/components/ors-map/ors-map.js
Expand Up @@ -99,6 +99,10 @@ angular.module("orsApp").directive("orsMap", () => {
attribution: orsNamespaces.layerWorldImagery.attribution,
id: 7
});
const cycleOSM = L.tileLayer(orsNamespaces.layerCycleOsm.url, {
attribution: orsNamespaces.layerCycleOsm.attribution,
id: 8
});
// const stamen = L.tileLayer(orsNamespaces.layerStamen.url, {
// attribution: orsNamespaces.layerStamen.attribution,
// });
Expand Down Expand Up @@ -516,7 +520,8 @@ angular.module("orsApp").directive("orsMap", () => {
OpenCycleMap: opencyclemap,
"Transport Dark": transportdark,
Outdoors: outdoors,
"World Imagery": worldImagery
"World Imagery": worldImagery,
CycleOSM: cycleOSM
};
$scope.overlays = {
// "Hillshade": hillshade
Expand Down
2 changes: 1 addition & 1 deletion app/components/ors-navigation/ors-nav.js
Expand Up @@ -13,7 +13,7 @@ angular
if ($location.path() === "/") {
ctrl.activeMenu = "/directions";
} else ctrl.activeMenu = $location.path();
ctrl.version = "0.5.2";
ctrl.version = "0.5.3";
}
],
$routeConfig: [
Expand Down
5 changes: 5 additions & 0 deletions app/constants/namespaces.js
Expand Up @@ -96,5 +96,10 @@ angular.module("orsApp").constant("orsNamespaces", {
"https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
attribution:
"Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community"
},
layerCycleOsm: {
url: "https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png",
attribution:
'Tiles <a href="https://github.com/cyclosm/cyclosm-cartocss-style/releases">CycleOSM</a> latest'
}
});
2 changes: 1 addition & 1 deletion app/infrastructure/ors-importexport-service.js
Expand Up @@ -79,7 +79,7 @@ angular
// create a simple Course TCX file (MARQ24)
// see https://www8.garmin.com/xmlschemas/TrainingCenterDatabasev2.xsd
let toTcx = (name, speedInKmPerH) => {
let version = "0.5.2";
let version = "0.5.3";
let pointInformation =
orsRouteService.data.features[orsRouteService.getCurrentRouteIdx()]
.point_information;
Expand Down
2 changes: 1 addition & 1 deletion app/js/app.js
Expand Up @@ -10,7 +10,7 @@
*|------------------------------------------------------------------------------------*/
/**
* @author: Amandus Butzer, amandus@openrouteservice.org, Timothy Ellersiek, timothy@openrouteservice.org
* @version: 0.5.2
* @version: 0.5.3
*/
(function(searchString, position) {
fetchData().then(bootstrapApplication);
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "openrouteservice.org",
"description": "angular version of openrouteservice.org",
"version": "0.5.2",
"version": "0.5.3",
"homepage": "http://www.heigit.org",
"license": "ISC",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "maps.openrouteservice.org",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/GIScience/openrouteservice-app.git"
Expand Down

0 comments on commit e902508

Please sign in to comment.