diff --git a/pom.xml b/pom.xml index ae78221..e5c4e06 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ osm.surveyor.plateau task-bldg - 0.0.8 + 0.0.9 war task-bldg TaskingManager for Plateau BLDG diff --git a/src/main/resources/static/custom/tasks.js b/src/main/resources/static/custom/tasks.js index cb208e6..6945cf3 100644 --- a/src/main/resources/static/custom/tasks.js +++ b/src/main/resources/static/custom/tasks.js @@ -84,11 +84,13 @@ if (feature) { var coordinates = feature.getGeometry().getCoordinates(); var info = feature.information; + var point = info.geometry.coordinates; var element = __overlay.getElement(); var descriptionHTML = "
code: " + info.properties.id + "
" + "
version: " + info.properties.version + "
" + - "
" + info.properties.path + "
"; + "
" + info.properties.path + "
" + + "
OpenStreetMap で現状を確認する
"; element.innerHTML = descriptionHTML; __overlay.setPosition(coordinates); __map.addOverlay(__overlay);