次の方法で共有


MapElementsLayer.MapElementClick イベント

定義

ユーザーがこのマップ レイヤーの子であるマップ要素をタップまたはクリックしたときに発生します。

// Register
event_token MapElementClick(TypedEventHandler<MapElementsLayer, MapElementClickEventArgs const&> const& handler) const;

// Revoke with event_token
void MapElementClick(event_token const* cookie) const;

// Revoke with event_revoker
MapElementsLayer::MapElementClick_revoker MapElementClick(auto_revoke_t, TypedEventHandler<MapElementsLayer, MapElementClickEventArgs const&> const& handler) const;
public event TypedEventHandler<MapElementsLayer,MapElementClickEventArgs> MapElementClick;
function onMapElementClick(eventArgs) { /* Your code */ }
mapElementsLayer.addEventListener("mapelementclick", onMapElementClick);
mapElementsLayer.removeEventListener("mapelementclick", onMapElementClick);
- or -
mapElementsLayer.onmapelementclick = onMapElementClick;
Public Custom Event MapElementClick As TypedEventHandler(Of MapElementsLayer, MapElementClickEventArgs) 

イベントの種類

注釈

このイベントは、 MapControl.MapElementClick イベントの後に発生します。

適用対象