Hello Mario,

 

You should do a reprojection using Proj4JS lib from EPSG:25830 to EPSG:4326 in 
client side, I mean, including Proj4JS in your OL development.

 

Then You have to code something simillar to:

 

var src = new OpenLayers.Projection('EPSG: 25830');

      var dest = new OpenLayers.Projection('EPSG: 4326');

 

        for(var i=0; i<features.length; ++i) {

            aCoord = features[i].geometry;

            aCoord.transform(src,dest);

        }

 

Regards,

 

Antoni Vidal

Unitat d'Aplicacions SIG-WEB
Institut Cartogràfic de Catalunya 
<http://mercuri.icc.cat/website/mob_nf/mob1/mob2/inici2.htm?CONSULTA=Institut%20Cartogr%25E0fic%20de%20Catalunya&XYADDRESS=429486:4580392>
 
Parc de Montjuïc, E-08038 Barcelona
Tel. (+34) 93 567 15 00 (ext. 3228)
www.icc.cat <http://www.icc.cat/> 

 

 

 

_______________________________________________
Users mailing list
[email protected]
http://openlayers.org/mailman/listinfo/users

Reply via email to