Fusion Tables造型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fusion Tables造型相关的知识,希望对你有一定的参考价值。
我正在尝试将多种样式应用于Google Fusion Table Layer。
这不会将数组中的所有多边形着色为不同的颜色:
styles: [{
where: 'Cadmio = 3391',
polygonOptions: {
fillColor: '#e60000',
fillOpacity: 1
}
},
{
where: 'Cadmio = 1074',
polygonOptions: {
fillColor: '#ffaa00',
fillOpacity: 1
}
},
{
where: 'Cadmio = 370',
polygonOptions: {
fillColor: '#38a800',
fillOpacity: 1
}
},{
where: 'Cadmio = 156',
polygonOptions: {
fillColor: '#74c200',
fillOpacity: 1
}
},{
where: 'Cadmio = 90',
polygonOptions: {
fillColor: '#98e600',
fillOpacity: 1
}
},{
where: 'Cadmio = 71',
polygonOptions: {
fillColor: '#ffff00',
fillOpacity: 1
}
}]
});
最后一个Whereclause不起作用,似乎de javascript代码只接受5个Whereclauses?我能做什么?我也用Fusion表map-view对它进行了风格化,我想用Javascript设置多边形的不透明度。
每张地图限制为5种样式。 https://developers.google.com/maps/documentation/javascript/layers#fusion_table_styles
Styles can only be applied to a single Fusion Tables layer per map. You may apply up to five styles to that layer.
但是,您可以使用Fusion Tables API设置样式并扩展该限制。
您可以使用Fusion Table'IN'子句将其着色。我可以用这个为整个澳大利亚州着色。如果您有任何疑问,请告诉我。
以上是关于Fusion Tables造型的主要内容,如果未能解决你的问题,请参考以下文章
markdown SpreadSheet到Fusion Tables
Fusion Tables 图层 URL 请求限制(2048 个字符)
Fusion Tables 不支持 CORS(跨源资源共享)?
在点击事件时从 Google Fusion Tables 访问单个单元格值