LeafletとgeoJSONを使用したクリックイベント


18

クリックするとAjax関数が実行されるgeoJSONにクリックイベントをアタッチするにはどうすればよいですか。私は調べましたonEachFeatureが、クリックではなくgeoJSONがロードされたときに実行され、大量のajax呼び出しを実行します!

回答:


22

あなたは正しい道を進んでいましたonEachFeature

各要素のイベントクリックをバインドするだけです。

以下を参照(テスト済み)

function whenClicked(e) {
  // e = event
  console.log(e);
  // You can make your ajax call declaration here
  //$.ajax(... 
}

function onEachFeature(feature, layer) {
    //bind click
    layer.on({
        click: whenClicked
    });
}

geojson = L.geoJson(your_data, {
    style: style,
    onEachFeature: onEachFeature
}).addTo(map);

8

ThomasG77のバージョンよりわずかに少ないコードでそれを行うことができます。

function onEachFeature(feature, layer) {
    //bind click
    layer.on('click', function (e) {
      // e = event
      console.log(e);
      // You can make your ajax call declaration here
      //$.ajax(... 
    });

}

geojson = L.geoJson(your_data, {
    style: style,
    onEachFeature: onEachFeature
}).addTo(map);

3

インライン関数としての別の方法

geojson = L.geoJson(your_data, {
style: style,
onEachFeature: function onEachFeature(feature, layer) {

layer.on('mouseover', function (e) {
  // e = event
  console.log(e);
  // You can make your ajax call declaration here
  //$.ajax(... 
  });}).addTo(map);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.