Changeset 5471
- Timestamp:
- 12/17/07 09:45:34 (1 year ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Renderer/SVG.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Renderer/SVG.js
r5430 r5471 359 359 */ 360 360 drawLineString: function(node, geometry) { 361 node.setAttributeNS(null, "points", this.getComponentsString(geometry.components)); 361 node.setAttributeNS(null, "points", 362 this.getComponentsString(geometry.components)); 362 363 }, 363 364 … … 371 372 */ 372 373 drawLinearRing: function(node, geometry) { 373 node.setAttributeNS(null, "points", this.getComponentsString(geometry.components)); 374 node.setAttributeNS(null, "points", 375 this.getComponentsString(geometry.components)); 374 376 }, 375 377 … … 472 474 * 473 475 * Parameters: 474 * components - {Array(<OpenLayers.Geometry.Point )} Array of points476 * components - {Array(<OpenLayers.Geometry.Point>)} Array of points 475 477 */ 476 478 getComponentsString: function(components) {
