我想切换多边形样式
在此处使用 FT: https ://www.google.com/fusiontables/data?docid=1jgWYtlqGSPzlIa-is8wl1cZkVIWEm_89rWUwqFU
和快速融合表向导 http://fusion-tables-api-samples.googlecode.com/svn/trunk/FusionTablesLayerWizard/src/index.html
我认为它会类似于(其中“邮政编码区”是 FT 中的列标签)
google.maps.event.addListener(layer_0, 'click', function(e) {
layer_0.set("styles", [{
where: "'Postcode district' = " + e.row['Postcode district'].value,
polygonOptions: {
fillColor: "#000000"
}
}]);
});
但这只是将每个多边形都设置为黑色。
谢谢。