User Tools

Site Tools


thinkgeo.mapsuite.silverlightedition.interactiveoverlay

ThinkGeo.MapSuite.SilverlightEdition.InteractiveOverlay

Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.

This class inherits from Overlay abstract class. This specified overlay describle the interative process with MapControl using Mouse or Keyborad.

Inheritance Hierarchy

Members Summary

Public Constructors

Protected Constructors

InteractiveOverlay()

  • Default constructor of this abstract class.
Remarks
  • N/A
Parameters

Public Methods

MouseDown(InteractionArguments)

  • This method will simulate the MouseDown interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

MouseMove(InteractionArguments)

  • This method will simulate the MouseMove interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

MouseUp(InteractionArguments)

  • This method will simulate the MouseUp interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

MouseClick(InteractionArguments)

  • This method will simulate the MouseClick interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

MouseDoubleClick(InteractionArguments)

  • This method will simulate the MouseDoubleClick interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

MouseWheel(InteractionArguments)

  • This method will simulate the MouseWheel interaction.
Remarks
  • This method is the concrete wrapper for its virtual Core method. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.
Return Value
Parameters
  • interactionArguments

Refresh()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Draw(RectangleShape,OverlayDrawType)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Initialize(Map)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • currentMap
    • Type:Map
    • Description:N/A

ToWorldCoordinate(Double,Double)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • screenX
    • Type:Double
    • Description:N/A
  • screenY
    • Type:Double
    • Description:N/A

ToWorldCoordinate(PointShape)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • screenCoordinate

ToWorldCoordinate(Point)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • screenCoordinate
    • Type:Point
    • Description:N/A

ToScreenCoordinate(Double,Double)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • worldX
    • Type:Double
    • Description:N/A
  • worldY
    • Type:Double
    • Description:N/A

ToScreenCoordinate(PointShape)

  • N/A
Remarks
  • N/A
Return Value
Parameters

ToScreenCoordinate(Point)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • worldCoordinate
    • Type:Point
    • Description:N/A

ToString()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

Equals(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Type
  • Description:N/A
Parameters

Protected Methods

MouseDownCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseDown API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

MouseMoveCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseMove API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

MouseUpCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseUp API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

MouseClickCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseClick API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

MouseDoubleClickCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseDoubleClick API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

MouseWheelCore(InteractionArguments)

  • This protected virtual method is the Core method of MouseWheel API.
Remarks
  • N/A
Return Value
Parameters
  • interactionArguments

OnMapMouseDown(MapMouseDownInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseDown is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnMapMouseMove(MapMouseMoveInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseMove is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnMapMouseUp(MapMouseUpInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseUp is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnMapMouseClick(MapMouseClickInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseClick is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnMapMouseDoubleClick(MapMouseDoubleClickInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseDoubleClick is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnMapMouseWheel(MapMouseWheelInteractiveOverlayEventArgs)

  • This event will be fired when MapMouseWheel is called.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

DrawCore(RectangleShape)

  • This method draws the InterativeInterativeOverlay abstract class. You have to override this API in its sub concrete classes, or it will throw NotImplementedException.
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:None
Parameters
  • worldExtent
    • Description:This parameter is the canvas object or a GeoImage to draw on.

DxU=(GeoCanvas)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

DrawAttributionCore(GeoCanvas)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnDrawingAttribution(DrawingAttributionOverlayEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnDrawnAttribution(DrawnAttributionOverlayEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

ZoomStoryCompletedCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

PanAnimationCompletedCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

InitializeCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Finalize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

MemberwiseClone()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

Public Properties

MouseMoveInterval

N/A

Remarks

N/A

Return Value
  • Type:TimeSpan

Visibility

N/A

Remarks

N/A

Return Value
  • Type:Visibility

OverlayElement

N/A

Remarks

N/A

Return Value
  • Type:FrameworkElement

Name

N/A

Remarks

N/A

Return Value
  • Type:String

Attribution

N/A

Remarks

N/A

Return Value
  • Type:String

TransitionEffect

N/A

Remarks

N/A

Return Value

Opacity

N/A

Remarks

N/A

Return Value
  • Type:Double

ZIndex

N/A

Remarks

N/A

Return Value
  • Type:Int32

StoryboardForZooming

N/A

Remarks

N/A

Return Value
  • Type:Storyboard

StoryboardForPanning

N/A

Remarks

N/A

Return Value
  • Type:Storyboard

PanFrameX

N/A

Remarks

N/A

Return Value
  • Type:SplineDoubleKeyFrame

PanFrameY

N/A

Remarks

N/A

Return Value
  • Type:SplineDoubleKeyFrame

ZoomFrameX

N/A

Remarks

N/A

Return Value
  • Type:SplineDoubleKeyFrame

ZoomFrameY

N/A

Remarks

N/A

Return Value
  • Type:SplineDoubleKeyFrame

Protected Properties

MapInfo

N/A

Remarks

N/A

Return Value

TranslateTransform

N/A

Remarks

N/A

Return Value
  • Type:TranslateTransform

ScaleTransform

N/A

Remarks

N/A

Return Value
  • Type:ScaleTransform

TransformGroup

N/A

Remarks

N/A

Return Value
  • Type:TransformGroup

Public Events

MapMouseDown This event will be fired when Mouse pressed Down on the Map.

Remarks

N/A

Event Arguments:MapMouseDownInteractiveOverlayEventArgs

MapMouseMove This event will be fired when Mouse moved on the Map.

Remarks

N/A

Event Arguments:MapMouseMoveInteractiveOverlayEventArgs

MapMouseUp This event will be fired when Mouse released up on the Map.

Remarks

N/A

Event Arguments:MapMouseUpInteractiveOverlayEventArgs

MapMouseClick This event will be fired when Mouse clicked(mouse up and mouse down in the same postion) on the Map.

Remarks

N/A

Event Arguments:MapMouseClickInteractiveOverlayEventArgs

MapMouseDoubleClick This event will be fired when Mouse double clicked on the Map.

Remarks

N/A

Event Arguments:MapMouseDoubleClickInteractiveOverlayEventArgs

MapMouseWheel This event will be fired when Mouse wheel on the Map.

Remarks

N/A

Event Arguments:MapMouseWheelInteractiveOverlayEventArgs

DrawingAttribution N/A

Remarks

N/A

Event Arguments:DrawingAttributionOverlayEventArgs

DrawnAttribution N/A

Remarks

N/A

Event Arguments:DrawnAttributionOverlayEventArgs

thinkgeo.mapsuite.silverlightedition.interactiveoverlay.txt · Last modified: 2017/03/16 21:59 (external edit)