Changeset 31317 in osm for applications/editors/josm/plugins/mapillary
- Timestamp:
- 2015-06-29T19:03:48+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java
r31313 r31317 70 70 71 71 } else { 72 MapillaryLayer.getInstance(); 72 73 if (file.getPath().substring(file.getPath().length() - 4) 73 74 .equals(".jpg") … … 158 159 horDev = HORIZONTAL_DISTANCE * noTagsPics / 2; 159 160 else 160 horDev = -HORIZONTAL_DISTANCE * (noTagsPics + 1) / 2; 161 horDev = -HORIZONTAL_DISTANCE * ((noTagsPics + 1) / 2); 161 162 LatLon pos = Main.map.mapView.getProjection().eastNorth2latlon( 162 163 Main.map.mapView.getCenter()); -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/commands/CommandMoveImage.java
r31278 r31317 47 47 48 48 public String toString() { 49 return trn("Moved {0} node", "Moved {0}nodes", images.size(),49 return trn("Moved {0} image", "Moved {0} images", images.size(), 50 50 images.size()); 51 51 } -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/commands/CommandTurnImage.java
r31278 r31317 44 44 45 45 public String toString() { 46 return trn("Turned {0} node", "Turned {0}nodes", this.images.size(),46 return trn("Turned {0} image", "Turned {0} images", this.images.size(), 47 47 this.images.size()); 48 48 }
Note:
See TracChangeset
for help on using the changeset viewer.