Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 31378)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 31379)
@@ -201,4 +201,25 @@
     super.destroy();
   }
+  
+  /**
+   * Zooms to fit all the {@link MapillaryAbstractImage} icons into the map view.
+   */
+  public void showAllPictures() {
+    double minLat = 90;
+    double minLon = 180;
+    double maxLat = -90;
+    double maxLon = -180;
+    for (MapillaryAbstractImage img : data.getImages()) {
+      if (img.getLatLon().lat() < minLat)
+        minLat = img.getLatLon().lat();
+      if (img.getLatLon().lon() < minLon)
+        minLon = img.getLatLon().lon();
+      if (img.getLatLon().lat() > maxLat)
+        maxLat = img.getLatLon().lat();
+      if (img.getLatLon().lon() > maxLon)
+        maxLon = img.getLatLon().lon();
+    }
+    Main.map.mapView.zoomTo(new Bounds(new LatLon(minLat, minLon), new LatLon (maxLat, maxLon)));
+  }
 
   /**
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java	(revision 31378)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java	(revision 31379)
@@ -154,4 +154,6 @@
             new MapillaryImportedImage(latValue, lonValue, caValue, file));
     }
+    
+    MapillaryLayer.getInstance().showAllPictures();
   }
 
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportIntoSequenceAction.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportIntoSequenceAction.java	(revision 31378)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportIntoSequenceAction.java	(revision 31379)
@@ -101,4 +101,6 @@
       joinImages();
     }
+    
+    MapillaryLayer.getInstance().showAllPictures();
   }
 
