HttpMapTileDataSource.UriRequested Event

Definition

Occurs when the tile is requested for an HttpMapTileDataSource. An instance of MapTileUriRequestedEventArgs provides data for this event.

// Register
event_token UriRequested(TypedEventHandler<HttpMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
HttpMapTileDataSource::UriRequested_revoker UriRequested(auto_revoke_t, TypedEventHandler<HttpMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<HttpMapTileDataSource,MapTileUriRequestedEventArgs> UriRequested;
function onUriRequested(eventArgs) { /* Your code */ }
httpMapTileDataSource.addEventListener("urirequested", onUriRequested);
httpMapTileDataSource.removeEventListener("urirequested", onUriRequested);
- or -
httpMapTileDataSource.onurirequested = onUriRequested;
Public Custom Event UriRequested As TypedEventHandler(Of HttpMapTileDataSource, MapTileUriRequestedEventArgs) 

Event Type

Applies to

See also