LocalMapTileDataSource.UriRequested Event

Definition

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

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

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

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

Event Type

Applies to

See also