CenterLatitude : double ux
The center latitude coordinate, applicable when using Circle overlay type
Adds a map overlay to a MapView
To overlay the map, you must decorate it with MapOverlay
nodes. There are three type of overlay that supported Polyline, Polygon and Circle.
In order to draw Overlay, it needs to define position where overlay should be drawn on the map using Coordinate
property. See the example below on how you can create map overlay
<NativeViewHost>
<MapView Zoom="14" Latitude="-6.914742" Longitude="107.609820">
<MapOverlay Type="Polyline" StrokeColor="Blue" LineWidth="5">
<Coordinate Latitude="-6.914742" Longitude="107.609820" />
<Coordinate Latitude="-6.915850" Longitude="107.609929" />
<Coordinate Latitude="-6.916959" Longitude="107.611009" />
</MapOverlay>
</MapView>
</NativeViewHost>
The center latitude coordinate, applicable when using Circle overlay type
The center longitude coordinate, applicable when using Circle overlay type
The dash pattern when drawing stroke, int2 type with first value define length of dash, and second value define length of gap
The End Cap of line
The Fill Color of overlay, only applicable on Polygon and Circle
Set whether to do geodesic draw on polyline
The Joint Type of line
The Line Width of overlay
Radius of the circle overlay, pplicable when using Circle overlay type
The Start Cap of line
The Stroke Color of overlay
The overlay type
The list of bindings belonging to this node.
The context parent is the semantic parent of this node. It is where non-UI structure should be resolved, like looking for the DataContext, a Navigation, or other semantic item.
Finds the first node with a given name that satisfies the given acceptor. The serach algorithm works as follows: Nodes in the subtree are matched first, then it matches the nodes in the subtrees ofthe ancestor nodes by turn all the way to the root. If no matching node is found, the function returns null.
Whether rooting for this node is completed. Returns false if unrooting has started.
Whether rooting of this node has started. Note that even if this property returns true, rooting may not yet be completed for the node. See also IsRootingCompleted.
Run-time name of the node. This property is automatically set using the ux:Name attribute.
Returns the next sibling node of the given type.
If you override OnRooted
you must call base.OnRooted()
first in your derived class. No other processing should happen first, otherwise you might end up in an undefined state.
The parent Visual of this node. Will return null if the node is not rooted.
Returns the next sibling node of the given type.
A linked list holding data for extrinsic properties.
hide
hide
Interface for objects that can have a script engine representation
hide