Changeset 6788 in osm for applications/editors/josm/plugins
- Timestamp:
- 2008-02-07T00:18:09+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSGrabber.java
r6777 r6788 7 7 import java.net.URL; 8 8 import java.text.DecimalFormat; 9 import java.text.DecimalFormatSymbols; 9 10 import java.text.NumberFormat; 11 import java.util.Locale; 10 12 11 13 import javax.imageio.ImageIO; … … 46 48 47 49 public static final NumberFormat 48 latLonFormat = new DecimalFormat("###0.0000000"); 50 latLonFormat = new DecimalFormat("###0.0000000", 51 new DecimalFormatSymbols(Locale.US)); 49 52 50 53 protected URL getURL(double w, double s,double e,double n,
Note:
See TracChangeset
for help on using the changeset viewer.