Changeset 9537
- Timestamp:
- 07/03/09 16:25:19 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/august/openlayers/2.8+/lib/OpenLayers/Format/SLD/v1.js
r9487 r9537 52 52 strokeWidth: 1, 53 53 strokeDashstyle: "solid", 54 pointRadius: 3, 54 // add support for strokeLinecap and strokeLineJoin 55 strokeLinecap: "round", 56 strokeLinejoin: "round", 57 // 58 pointRadius: 3, 55 59 graphicName: "square" 56 60 }, … … 337 341 "stroke-width": "strokeWidth", 338 342 "stroke-linecap": "strokeLinecap", 343 "stroke-linejoin": "strokeLinejoin", 339 344 "stroke-dasharray": "strokeDashstyle", 340 345 "fill": "fillColor", … … 667 672 ); 668 673 } 674 // add support for strokeLinecap and strokeLineJoin 675 if(symbolizer.strokeLinejoin != undefined) { 676 this.writeNode( 677 "CssParameter", 678 {symbolizer: symbolizer, key: "strokeLinejoin"}, 679 node 680 ); 681 } 682 if(symbolizer.strokeLinecap != undefined) { 683 this.writeNode( 684 "CssParameter", 685 {symbolizer: symbolizer, key: "strokeLinecap"}, 686 node 687 ); 688 } 669 689 return node; 670 690 },
