Hi all,<br><br>I have added a vectorial layer in my map, starting from a wkt:<br><br>----<br><br>path = new OpenLayers.Layer.Vector("Percorso", {style: result_style});<br>map.addLayers([path]);<br>parser = new OpenLayers.Format.WKT();<br>
var wkt = "<?php echo $path_wkt; ?>";<br> <br>var path_feat = parser.read(wkt); <br> <br> path.addFeatures([path_feat]);<br><br>----<br><br>This works. Now, the wkt comes from an external process in long/lat, and I need to project it on the map using EPSG:XXXX. How can I accomplish this?<br>
Thank you,<br><br>Damiano Morosi<br>