Hi
I encountered a bug where sometimes transformed geometries lack spaces after the commas, which causes the parsing regex to only split the first object
My suggested fix is to change the parsing regex in MapWidget.js as follows:
this.regExes.justComma = /\s,\ ?\s/;
Which allows 0 or 1 spaces after the comma.
Platform is Centos 6, Django 1.3, PostGIS 1.5.3, Geos 3.3.2
Hi I encountered a bug where sometimes transformed geometries lack spaces after the commas, which causes the parsing regex to only split the first object
My suggested fix is to change the parsing regex in MapWidget.js as follows:
this.regExes.justComma = /\s,\ ?\s/;
Which allows 0 or 1 spaces after the comma.
Platform is Centos 6, Django 1.3, PostGIS 1.5.3, Geos 3.3.2