我是Js的初学者,我正在尝试使用D3.js更改其ID的特定国家/地区(函数colorCountry)的颜色.但是,我选择的颜色并不重要.结果将始终显示以橙色突出显示的地图.我该怎么做才能解决这个问题?
我的代码如下.
谢谢.
body {
background: #fcfcfa;
}
.stroke {
fill: none;
stroke: #000;
stroke-width: 3px;
}
.fill {
fill: #fff;
}
.graticule {
fill: none;
stroke: #777;
stroke-width: .5px;
stroke-opacity: .5;
}
.land {
fill: #888;
}
.boundary {
fill: none;
stroke: #fff;
stroke-width: .5px;
}
var countryCode = 840; //36: AUSTRALIA * 643: RUSSIA * 76: BRAZIL * 840: USA
var width = 960,
height = 580;
var color = d3.scale.category10();
var projection = d3.geo.mercator()
.scale(170)
.translat