我已经为我的地图调整了这个例子:
https://developers.google.com/fusiontables/docs/samples/dynamic_styling_template
但我希望边界的不透明度为 0(所以没有人看到它)。我想我必须用 strokeOpacity: 0.0 做一些代码和平的事情,但我无法让它工作
// Apply the style to the layer & generate corresponding legend
function applyStyle(map, layer, column) {
var columnStyle = COLUMN_STYLES[column];
var styles = [];
for (var i in columnStyle) {
var style = columnStyle[i];
styles.push({
where: generateWhere(column, style.min, style.max),
polygonOptions: {
fillColor: style.color,
fillOpacity: style.opacity ? style.opacity : 0.8
}
});
}