Changeset 32572 in osm for applications/editors
- Timestamp:
- 2016-07-05T14:48:34+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.idea/codeStyleSettings.xml
r32354 r32572 29 29 <option name="JD_PRESERVE_LINE_FEEDS" value="true" /> 30 30 <option name="WRAP_COMMENTS" value="true" /> 31 <MarkdownNavigatorCodeStyleSettings> 32 <option name="RIGHT_MARGIN" value="120" /> 33 </MarkdownNavigatorCodeStyleSettings> 31 34 <XML> 32 35 <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" /> -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java
r32067 r32572 28 28 * Main constructor of the class MapillaryImage 29 29 * 30 * @param key 31 * @param latLon 32 * @param ca 30 * @param key The unique identifier of the image. 31 * @param latLon The latitude and longitude where it is positioned. 32 * @param ca The direction of the images in degrees, meaning 0 north. 33 33 */ 34 34 public MapillaryImage(final String key, final LatLon latLon, final double ca) { … … 50 50 * Sets the location of the image. 51 51 * 52 * @param location 53 * A {@code String} object containing the place where the image was taken. 52 * @param location A {@code String} object containing the place where the image was taken. 54 53 */ 55 54 public void setLocation(String location) { … … 69 68 * Adds a new sign to the set of signs. 70 69 * 71 * @param sign 72 * A {@code String} that identifies the type of sign. 70 * @param sign A {@code String} that identifies the type of sign. 73 71 */ 74 72 public void addSign(String sign) { … … 88 86 * Sets the username of the person who took the image. 89 87 * 90 * @param user 91 * A {@code String} containing the username of the person who took the image. 88 * @param user A {@code String} containing the username of the person who took the image. 92 89 */ 93 90 public void setUser(String user) { … … 98 95 * Returns the username of the person who took the picture. 99 96 * 100 * @return A {@code String} containing the username of the person who took the 101 * picture. 97 * @return A {@code String} containing the username of the person who took the picture. 102 98 */ 103 99 public String getUser() { -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/SelectMode.java
r32383 r32572 115 115 LatLon from = Main.map.mapView.getLatLon(this.start.getX(), this.start.getY()); 116 116 for (MapillaryAbstractImage img : this.data.getMultiSelectedImages()) { 117 118 117 img.move(to.getX() - from.getX(), to.getY() - from.getY()); 119 118 }
Note:
See TracChangeset
for help on using the changeset viewer.