Paste
Pasted as Java by Dharmendra ( 14 years ago )
Point screenPts = new Point();
mapView.getProjection().toPixels(mGeopoint, screenPts);
mGeoPoint is a object of the GeoPoint
Now you can access the x and y by
x = screenPts.x
y = screenPts.y
Revise this Paste