I've been thinking about this last a few days. In internet i've searched about the projection systems of mobile mapping systems like google maps, bing, esri and others. I've found that they are using a projection called EPSG 3857. Also Nutiteq using this system. I'm still searching the parameters of this projection. But I've found only a very short description of EPSG 3857 in wiki page. I'm drawing a polygon on Nutiteq and calculating the area but I need this areas technical background.
Maybe someone knows the answer.
Thanks in advance...
If you take EPSG 3857 coordinates (which are technically meters) and apply some simple area (or also distance) calculation algorithm, then you will get wrong result. To be be exact, it is more or less correct in equator, but more and more wrong towards either of the poles.
You must convert coordinates to latitude and longitude (also known as WGS84, or geographical coordinates, or EPSG:4326), and then use proper spherical calculation. Here seems to be good example for Android.