Skip to content

Commit

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

## [v0.5.1] - 2020-05-07

### Added
- World Imagery (Esri) satellite base layer
- 0mm kerb option for wheelchair profile

## [v0.5.0] - 2020-03-26

### Removed
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.layerOutdoors.attribution,
id: 6
});
const worldImagery = L.tileLayer(orsNamespaces.layerWorldImagery.url, {
attribution: orsNamespaces.layerWorldImagery.attribution,
id: 7
});
// const stamen = L.tileLayer(orsNamespaces.layerStamen.url, {
// attribution: orsNamespaces.layerStamen.attribution,
// });
Expand Down Expand Up @@ -516,7 +520,8 @@ angular.module("orsApp").directive("orsMap", () => {
OpenStreetMap: openstreetmap,
OpenCycleMap: opencyclemap,
"Transport Dark": transportdark,
Outdoors: outdoors
Outdoors: outdoors,
"World Imagery": worldImagery
};
$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.0";
ctrl.version = "0.5.1";
}
],
$routeConfig: [
Expand Down
Expand Up @@ -498,6 +498,9 @@ angular.module("orsApp.ors-options", []).component("orsOptions", {
value: ctrl.currentOptions.curb,
options: {
stepsArray: [
{
value: ctrl.optionList.wheelchair.Curb["0.001"].value
},
{
value: ctrl.optionList.wheelchair.Curb["0.03"].value
},
Expand Down
4 changes: 4 additions & 0 deletions app/constants/lists.js
Expand Up @@ -338,6 +338,10 @@ angular.module("orsApp").constant("lists", {
}
},
Curb: {
"0.001": {
name: "0.0 cm",
value: 0.001
},
"0.03": {
name: "Up to 3cm",
value: 0.03
Expand Down
6 changes: 6 additions & 0 deletions app/constants/namespaces.js
Expand Up @@ -99,5 +99,11 @@ angular.module("orsApp").constant("orsNamespaces", {
GetCapabilities:
"https://sgx.geodatenzentrum.de/wms_topplus_web_open?request=GetCapabilities&service=wms",
url: "https://sgx.geodatenzentrum.de/wms_topplus_web_open?"
},
layerWorldImagery: {
url:
"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"
}
});
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.0";
let version = "0.5.1";
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.0
* @version: 0.5.1
*/
(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.0",
"version": "0.5.1",
"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.0",
"version": "0.5.1",
"repository": {
"type": "git",
"url": "https://github.com/GIScience/openrouteservice-app.git"
Expand Down

0 comments on commit c0837be

Please sign in to comment.