Changeset 32039 in osm for applications/editors/josm/plugins/mapillary/src
- Timestamp:
- 2016-01-31T19:14:39+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java
r31989 r32039 326 326 } 327 327 for (MapillaryAbstractImage imageAbs : this.data.getImages()) { 328 if (imageAbs.isVisible()) { 328 if (imageAbs.isVisible() && Main.map.mapView.contains(Main.map.mapView.getPoint(imageAbs.getLatLon()))) { 329 329 final Point p = mv.getPoint(imageAbs.getLatLon()); 330 330 ImageIcon icon = MapillaryPlugin.MAP_ICON; -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillarySequence.java
r31882 r32039 4 4 import java.util.ArrayList; 5 5 import java.util.List; 6 import java.util.concurrent.CopyOnWriteArrayList; 6 7 7 8 /** … … 30 31 */ 31 32 public MapillarySequence() { 32 this.images = new ArrayList<>(); 33 this.images = new CopyOnWriteArrayList<>(); 33 34 } 34 35 … … 40 41 */ 41 42 public MapillarySequence(String key, long createdAt) { 42 this.images = new ArrayList<>(); 43 this.images = new CopyOnWriteArrayList<>(); 43 44 this.key = key; 44 45 this.createdAt = createdAt;
Note:
See TracChangeset
for help on using the changeset viewer.