I have captured multiple points by moving around field and saved it in array list of Lat Long. From these points I have drawn polygon on my map fragment. Now I have to calculate area of this drawn polygon.For calculating area I want to use this link
Calculating Irregular Polygon Area
Now for using this formula I have to convert my Lat Long(which are in degrees) vertices into corresponding meters , so how to do that?
Also is there any other way to solve this problem. I know we can directly use computeArea() method if java script is used but I want solution for this native Google map application.