Changeset 33774 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffset.java
- Timestamp:
- 2017-11-05T19:09:17+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffset.java
r33547 r33774 4 4 import java.util.Map; 5 5 6 import org.openstreetmap.josm.data.coor.CoordinateFormat;7 6 import org.openstreetmap.josm.data.coor.LatLon; 7 import org.openstreetmap.josm.data.coor.conversion.DecimalDegreesCoordinateFormat; 8 8 9 9 /** … … 55 55 super.putServerParams(map); 56 56 map.put("imagery", imagery); 57 map.put("imlat", imageryPos.latToString(CoordinateFormat.DECIMAL_DEGREES));58 map.put("imlon", imageryPos.lonToString(CoordinateFormat.DECIMAL_DEGREES));57 map.put("imlat", DecimalDegreesCoordinateFormat.INSTANCE.latToString(imageryPos)); 58 map.put("imlon", DecimalDegreesCoordinateFormat.INSTANCE.lonToString(imageryPos)); 59 59 if (minZoom > 0) 60 60 map.put("minzoom", String.valueOf(minZoom));
Note:
See TracChangeset
for help on using the changeset viewer.
