Index: applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSImage.java
===================================================================
--- applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSImage.java	(revision 6711)
+++ applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSImage.java	(revision 6774)
@@ -17,4 +17,6 @@
 import java.net.MalformedURLException;
 import java.net.URL;
+import java.text.DecimalFormat;
+import java.text.NumberFormat;
 
 import javax.imageio.ImageIO;
@@ -119,9 +121,15 @@
 	}
 
+	public static NumberFormat latLonFormat = new DecimalFormat("###0.0000000");
+
 	protected URL doGetURL(double w,double s,double e,double n, int wi, 
 					int ht) throws MalformedURLException
 	{
-		String str = constURL + "&bbox=" + w +"," + s + ","+
-				e+","+n + "&width=" + wi + "&height=" + ht;
+		String str = constURL + "&bbox="
+			+ latLonFormat.format(w) + ","
+			+ latLonFormat.format(s) + ","
+			+ latLonFormat.format(e) + ","
+			+ latLonFormat.format(n)
+			+ "&width=" + wi + "&height=" + ht;
 		return new URL(str.replace(" ", "%20"));
 	}
