我正在使用 Leaflet 在带有 javascript 的地图上以 SVG 格式绘制地图数据。我有一组数千个坐标,我正在其中绘制一个传单路径(扩展 L.Browser.svg)。
我想用第三个变量对线进行颜色编码(因为这是一张地图,比如说海拔,蓝色低,红色高,或类似的东西)。我是 SVG 新手,但似乎我只能为整个路径设置笔触颜色。
例如我现在所拥有的——线只是一种颜色(为简单起见,概念代码被剥离):
// create the SVG group and path element
this._container = this._createElement('g');
this._path = this._createElement('path');
// set the stoke color -- I wish I could make this dynamic per segment!
this._path.setAttribute('stroke', '#00000');
// Not real code, but simplified...generate lots of coordinates for the polyline
var myPath = "M" + p.x + "," + p.y + " L";
points.each(function(item, index){
poly += item.x + "," + item.y + " ";
});
// update
this._path .setAttribute('d', poly);
有没有比创建数千个路径元素并将它们添加到 SVG 组更好的方法来做到这一点,每个元素都有自己的笔触颜色?