こんにちは、このリーフレット チュートリアルhttp://leafletjs.com/examples/choropleth.htmlに基づいて、次の行を変更できるように 20 個のボタンを作成しようとしています。ボタン #1 fillColor:getColor(feature.properties.btn1)、ボタン #2 fillColor:getColor(feature.properties.btn1) などを押す
function style(feature) {
return {
fillColor: getColor(feature.properties.density),
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7
};
}
L.geoJson(statesData, {style: style}).addTo(map);
私が欲しいのは、ボタンが押されたとき、別の geojson プロパティが表示されることだけです。