[Mapbender-commits] r5270 - trunk/mapbender/lib

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Jan 5 08:48:25 EST 2010


Author: christoph
Date: 2010-01-05 08:48:25 -0500 (Tue, 05 Jan 2010)
New Revision: 5270

Modified:
   trunk/mapbender/lib/point.js
Log:


Modified: trunk/mapbender/lib/point.js
===================================================================
--- trunk/mapbender/lib/point.js	2010-01-05 12:34:17 UTC (rev 5269)
+++ trunk/mapbender/lib/point.js	2010-01-05 13:48:25 UTC (rev 5270)
@@ -25,15 +25,13 @@
  	 *
 	 * @type Float
 	 */
-//	this.x = parseFloat(x);
-	this.x = x;
+	this.x = parseFloat(x);
  	/**
  	 * y value of the {@link Point}
 	 *
 	 * @type Float
 	 */
-//	this.y = parseFloat(y);
-	this.y = y;
+	this.y = parseFloat(y);
 	
 	this.z = z;
 	



More information about the Mapbender_commits mailing list