]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/details-html.php
typo
[nominatim.git] / lib / template / details-html.php
index 721af44de7add3bcb36bc9ca2f60521e3b02d77c..9124d594c4c56a82a476189147512ba6e43cfac0 100644 (file)
@@ -33,7 +33,6 @@ body {
     </style>
        <script src="js/OpenLayers.js"></script>
        <script src="js/tiles.js"></script>
-       <script src="prototype-1.6.0.3.js"></script>
        <script type="text/javascript">
         
                var map;
@@ -75,10 +74,12 @@ body {
                        var proj_map = map.getProjectionObject();
                        var latlon;
 <?php
+if (isset($aPolyPoints)) {
 foreach($aPolyPoints as $aPolyPoint)
 {
        echo "                        pointList.push(new OpenLayers.Geometry.Point(".$aPolyPoint[1].",".$aPolyPoint[2]."));\n";
 }
+}
 ?>
                        var linearRing = new OpenLayers.Geometry.LinearRing(pointList).transform(proj_EPSG4326, proj_map);;
                        var polygonFeature = new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Polygon([linearRing]),null,style);