return;
}
MapView mv = Main.map.mapView;
LatLon curPos = mv.getProjection().eastNorth2latlon(mv.getCenter());
lat.setText(Double.toString(curPos.lat()));
lon.setText(Double.toString(curPos.lon()));
double dist = mv.getDist100Pixel();
double zoomFactor = 1/dist;
zm.setText(Long.toString(Math.round(dist*100)/100));