X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c98e59be03a8ccf1a42c3ecb4ae21a7701cabfb3..aade8c75cb6036c85f4df36c810fbbcc07f43907:/lib/template/details-html.php diff --git a/lib/template/details-html.php b/lib/template/details-html.php index e2799539..83df4814 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -18,7 +18,6 @@ new OpenLayers.Control.Permalink(), new OpenLayers.Control.Navigation(), new OpenLayers.Control.PanZoomBar(), - new OpenLayers.Control.MouseDefaults(), new OpenLayers.Control.MousePosition(), new OpenLayers.Control.Attribution()], maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34), @@ -46,18 +45,31 @@ }); var feature = freader.read(''); + var featureCentre = freader.read('POINT( )'); if (feature) { map.zoomToExtent(feature.geometry.getBounds()); - feature.style = { strokeColor: "#75ADFF", fillColor: "#F0F7FF", strokeWidth: , strokeOpacity: 0.75, fillOpacity: 0.75, - pointRadius: 100 + pointRadius: 50 + }; + + + featureCentre.style = { + strokeColor: "#008800", + fillColor: "#338833", + strokeWidth: , + strokeOpacity: 0.75, + fillOpacity: 0.75, + pointRadius: 8 }; + vectorLayer.addFeatures([feature,featureCentre]); + vectorLayer.addFeatures([feature]); + } } @@ -68,7 +80,7 @@ echo '

'; if ($aPointDetails['icon']) { - echo ''; + echo ''.$aPointDetails['icon'].''; } echo $aPointDetails['localname'].'

'; echo '
'; @@ -84,6 +96,7 @@ echo '
Rank: '.$aPointDetails['rank_search_label'].'
'; if ($aPointDetails['calculated_importance']) echo '
Importance: '.$aPointDetails['calculated_importance'].($aPointDetails['importance']?'':' (estimated)').'
'; echo '
Coverage: '.($aPointDetails['isarea']=='t'?'Polygon':'Point').'
'; + echo '
Centre Point: '.$aPointDetails['lat'].','.$aPointDetails['lon'].'
'; $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':''))); if ($sOSMType) echo '
OSM: '.$sOSMType.' '.$aPointDetails['osm_id'].'
'; if ($aPointDetails['wikipedia'])