[Mapbender-commits] r6974 - trunk/mapbender/http/javascripts
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Sep 29 11:26:36 EDT 2010
Author: christoph
Date: 2010-09-29 15:26:36 +0000 (Wed, 29 Sep 2010)
New Revision: 6974
Modified:
trunk/mapbender/http/javascripts/geometry.js
Log:
bug with multipolygons
Modified: trunk/mapbender/http/javascripts/geometry.js
===================================================================
--- trunk/mapbender/http/javascripts/geometry.js 2010-09-29 14:33:23 UTC (rev 6973)
+++ trunk/mapbender/http/javascripts/geometry.js 2010-09-29 15:26:36 UTC (rev 6974)
@@ -1533,8 +1533,8 @@
}
str += currentRing.get(i).toString();
}
- if (currentRing.count() > 0 && !this.currentRing.get(0).equals(this.currentRing.get(i-1))) {
- str += ", " + this.currentRing.get(0).toString();
+ if (currentRing.count() > 0 && !currentRing.get(0).equals(currentRing.get(i-1))) {
+ str += ", " + currentRing.get(0).toString();
}
}
}
More information about the Mapbender_commits
mailing list