[Mapbender-commits] r6971 - trunk/mapbender/http/javascripts

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Sep 29 10:28:44 EDT 2010


Author: christoph
Date: 2010-09-29 14:28:44 +0000 (Wed, 29 Sep 2010)
New Revision: 6971

Modified:
   trunk/mapbender/http/javascripts/geometry.js
Log:
bugfix multipolygon

Modified: trunk/mapbender/http/javascripts/geometry.js
===================================================================
--- trunk/mapbender/http/javascripts/geometry.js	2010-09-29 14:21:08 UTC (rev 6970)
+++ trunk/mapbender/http/javascripts/geometry.js	2010-09-29 14:28:44 UTC (rev 6971)
@@ -1533,8 +1533,8 @@
 					}
 					str += currentRing.get(i).toString();
 				}
-				if (currentRing.count() > 0 && !this.currentRing(0).equals(this.currentRing(i-1))) {
-					str += ", " + this.currentRing(0).toString();
+				if (currentRing.count() > 0 && !this.currentRing.get(0).equals(this.currentRing.get(i-1))) {
+					str += ", " + this.currentRing.get(0).toString();
 				}
 			}
 		}



More information about the Mapbender_commits mailing list