我在地图上使用 kartograph 来根据数据调整样式/工具提示,所以我遵循这个展示: http: //kartograph.org/showcase/choropleth/
map.addLayer('layer_0', {
styles: {
'stroke-width': 0.7,
fill: function(d) {
return color(stars[d["nuts-id"]]?
stars[d["nuts-id"]].total_stars:
0);
},
stroke: function(d) {
return color(stars[d["nuts-id"]]?
stars[d["nuts-id"]].total_stars:
0).darker();
},
},
tooltips: function(d) {
return [d["nuts-id"], stars[d["nuts-id"]]?
stars[d["nuts-id"]].total_stars:
0];
}
});
地图很好,现在我想编辑它。
对于我成功完成的风格:
map.getLayer('layer_0').style('fill', function(d) { ... });
map.getLayer('layer_0').style('stroke', function(d) { ... });
但我无法编辑工具提示功能......
我尝试了这个解决方案:https ://github.com/kartograph/kartograph.js/wiki/Tooltips 但我收到“map.tooltips is not defined”错误...