diff --git a/WebContent/base/OSRM.Geocoder.js b/WebContent/base/OSRM.Geocoder.js index 66ab2a856..183c0b5ce 100644 --- a/WebContent/base/OSRM.Geocoder.js +++ b/WebContent/base/OSRM.Geocoder.js @@ -106,8 +106,6 @@ _showResults: function(response, parameters) { if(i%2==0) { rowstyle='results-body-even'; } html += ''; -// html += ''+(i+1)+'.'; - // optimally show Nominatim icons instead of numbers if(!result.icon) result.icon = "http://nominatim.openstreetmap.org/images/mapicons/poi_point_of_interest.glow.12.png"; html += ''; @@ -115,8 +113,8 @@ _showResults: function(response, parameters) { if(result.display_name){ html += '
'+result.display_name; - // optionally show osm_type, class, type - html += '
[osm_type: ' + result.osm_type + ', class: ' + result.class + ', type: ' + result.type + ']'; + // debug output to show osm_type, class, type + // html += '
[osm_type: ' + result.osm_type + ', class: ' + result.class + ', type: ' + result.type + ']'; html += '
'; } html += ""; diff --git a/WebContent/main.css b/WebContent/main.css index 5ecc05738..ad328ec83 100644 --- a/WebContent/main.css +++ b/WebContent/main.css @@ -327,14 +327,14 @@ html, body { .results-body-counter { text-align:right; - vertical-align:top; + vertical-align:middle; font-weight:bold; padding:1px 5px 1px 5px; } .results-body-items { text-align:left; - vertical-align: middle; + vertical-align:top; width:100%; padding:1px; }