MapControl.TargetCameraChanged Event

Definition

Occurs when the final position of the map's camera has changed.

// Register
event_token TargetCameraChanged(TypedEventHandler<MapControl, MapTargetCameraChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
MapControl::TargetCameraChanged_revoker TargetCameraChanged(auto_revoke_t, TypedEventHandler<MapControl, MapTargetCameraChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapTargetCameraChangedEventArgs> TargetCameraChanged;
function onTargetCameraChanged(eventArgs) { /* Your code */ }
mapControl.addEventListener("targetcamerachanged", onTargetCameraChanged);
mapControl.removeEventListener("targetcamerachanged", onTargetCameraChanged);
- or -
mapControl.ontargetcamerachanged = onTargetCameraChanged;
Public Custom Event TargetCameraChanged As TypedEventHandler(Of MapControl, MapTargetCameraChangedEventArgs) 

Event Type

TypedEventHandler<MapControl,MapTargetCameraChangedEventArgs>

Remarks

During an animation of the map, the ActualCamera defines the current position of the map's camera and TargetCamera defines the final position of the camera.

Applies to