Changeset 28008 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetBase.java
- Timestamp:
- 2012-03-06T21:32:44+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetBase.java
r27986 r28008 2 2 3 3 import java.util.Date; 4 import java.util.Map; 5 import org.openstreetmap.josm.data.coor.CoordinateFormat; 4 6 import org.openstreetmap.josm.data.coor.LatLon; 5 7 … … 51 53 return position; 52 54 } 55 56 public void putServerParams( Map<String, String> map ) { 57 map.put("lat", position.latToString(CoordinateFormat.DECIMAL_DEGREES)); 58 map.put("lon", position.lonToString(CoordinateFormat.DECIMAL_DEGREES)); 59 map.put("author", author); 60 map.put("description", description); 61 } 53 62 }
Note:
See TracChangeset
for help on using the changeset viewer.