Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtils.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtils.java	(revision 31788)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtils.java	(revision 31789)
@@ -44,6 +44,4 @@
 
   private static double MIN_ZOOM_SQUARE_SIDE = 0.002;
-
-  private static int noTagsPics = 0;
 
   /**
@@ -328,13 +326,4 @@
    */
   public static MapillaryImportedImage readNoTags(File file, LatLon pos) {
-    double HORIZONTAL_DISTANCE = 0.0001;
-    double horDev;
-
-    if (noTagsPics % 2 == 0)
-      horDev = HORIZONTAL_DISTANCE * noTagsPics / 2;
-    else
-      horDev = -HORIZONTAL_DISTANCE * ((noTagsPics + 1) / 2);
-    noTagsPics++;
-
     ImageMetadata metadata = null;
     try {
@@ -351,9 +340,9 @@
               ExifTagConstants.EXIF_TAG_DATE_TIME_ORIGINAL);
       if (datetimeOriginal == null)
-        return new MapillaryImportedImage(pos.lat(), pos.lon() + horDev, 0,
+        return new MapillaryImportedImage(pos.lat(), pos.lon(), 0,
             file);
       else {
         try {
-          return new MapillaryImportedImage(pos.lat(), pos.lon() + horDev, 0,
+          return new MapillaryImportedImage(pos.lat(), pos.lon(), 0,
               file, datetimeOriginal.getStringValue());
         } catch (ImageReadException e) {
@@ -362,5 +351,5 @@
       }
     }
-    return new MapillaryImportedImage(pos.lat(), pos.lon() + horDev, 0, file);
+    return new MapillaryImportedImage(pos.lat(), pos.lon(), 0, file);
   }
 
