#719 - until proper clipping is achieved, this solution redraws as much of features as possible

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3167 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-05-24 03:07:32 +00:00
parent bda31f36ea
commit daf95113d8

View File

@@ -432,8 +432,9 @@ OpenLayers.Renderer.SVG.prototype =
var strings = [];
for(var i = 0; i < components.length; i++) {
var component = this.getShortString(components[i]);
if (!component) { return false; }
strings.push(component);
if (component) {
strings.push(component);
}
}
return strings.join(",");
},