다음을 통해 공유


CustomMapTileDataSource.BitmapRequested 이벤트

정의

CustomMapTileDataSource에 대한 비트맵을 요청할 때 발생합니다. MapTileBitmapRequestedEventArgs의 instance 이 이벤트에 대한 데이터를 제공합니다.

// Register
event_token BitmapRequested(TypedEventHandler<CustomMapTileDataSource, MapTileBitmapRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CustomMapTileDataSource::BitmapRequested_revoker BitmapRequested(auto_revoke_t, TypedEventHandler<CustomMapTileDataSource, MapTileBitmapRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<CustomMapTileDataSource,MapTileBitmapRequestedEventArgs> BitmapRequested;
function onBitmapRequested(eventArgs) { /* Your code */ }
customMapTileDataSource.addEventListener("bitmaprequested", onBitmapRequested);
customMapTileDataSource.removeEventListener("bitmaprequested", onBitmapRequested);
- or -
customMapTileDataSource.onbitmaprequested = onBitmapRequested;
Public Custom Event BitmapRequested As TypedEventHandler(Of CustomMapTileDataSource, MapTileBitmapRequestedEventArgs) 

이벤트 유형

적용 대상

추가 정보