0

我在地图上使用 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”错误...

4

1 回答 1

1

我终于找到了正确的语法:

map.getLayer('layer_0').tooltips(function(d) { ... });
于 2015-04-02T07:59:24.320 回答