I get the multypoligon from webservice and I try to calculate area for that poligon with the following code:

var poly = new OpenLayers.Geometry.MultiPolygon(poligon);
var area = geom.getArea();

But that returns me area in square degrees, our projection is EPSG:3243 I was try to use function

OpenLayers.Layer.SphericalMercator.forwardMercator

But that didn't help me alot, is there any other solution or some other hint?

Cheers!

link|improve this question

67% accept rate
There is a solution to use other function getGeodesicArea() and than it will looks like this var area = (geom.getGeodesicArea()/1000000) – vaske May 13 '11 at 9:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.