Changeset 31348 in osm
- Timestamp:
- 2015-07-07T13:56:40+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/README
r31341 r31348 1 README 1 Mapillary-plugin for JOSM 2 2 ====== 3 3 4 * nokutu <nokutu@openmailbox.org> 5 6 * License: GPL v2 or later 7 8 * Feel free to contact me for any bug or suggestion. 4 A plugin for showing Mapillary images inside the OpenStreetMap-Editor JOSM. 9 5 6 You can both download images from mapillary.com or import them from your harddrive. 7 8 Support for uploading images and modifying images on Mapillary-servers is in the works, stay tuned. 9 10 * Maintainer: nokutu <nokutu@openmailbox.org> 11 * License: GPL v2 or later 12 * Feel free to contact me for any bug or suggestion. -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImportedImage.java
r31341 r31348 31 31 /** 32 32 * Returns the pictures of the file. 33 * 34 * @return A nBufferedImage object containing the pictures.33 * 34 * @return A BufferedImage object containing the pictures. 35 35 * @throws IOException 36 * @throws IllegalArgumentException if file is currently set to null 36 * @throws IllegalArgumentException if file is currently set to null 37 37 */ 38 38 public BufferedImage getImage() throws IOException { -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportedImageTest.java
r31347 r31348 8 8 public class ImportedImageTest { 9 9 10 @Before 11 public void setUp() { 12 MapillaryData.TEST_MODE = true; 13 14 } 15 10 @Before 11 public void setUp() { 12 MapillaryData.TEST_MODE = true; 13 } 16 14 17 15 @Test(expected=IllegalArgumentException.class)
Note:
See TracChangeset
for help on using the changeset viewer.