Index: applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementLayer.java
===================================================================
--- applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementLayer.java	(revision 15953)
+++ applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementLayer.java	(revision 16294)
@@ -75,6 +75,5 @@
         Point l = null;
         for(WayPoint p:points){
-            LatLon c = p.latlon;
-            Point pnt = Main.map.mapView.getPoint(Main.proj.latlon2eastNorth(c));
+            Point pnt = Main.map.mapView.getPoint(p.getCoor());
             if (l != null){
                 g.drawLine(l.x, l.y, pnt.x, pnt.y);
@@ -196,9 +195,9 @@
 
     public static double calcDistance(WayPoint p1, WayPoint p2){
-        return calcDistance(p1.latlon, p2.latlon);
+        return calcDistance(p1.getCoor(), p2.getCoor());
     }
 
     public static double angleBetween(WayPoint p1, WayPoint p2){
-        return angleBetween(p1.latlon, p2.latlon);
+        return angleBetween(p1.getCoor(), p2.getCoor());
     }
 
