Hi,
I have a map with several overlapped items on it. I want to programmatically highlight one or several items by changing the ZIndex. Unfortunatly my ZIndex binding is not working (but the other ones works fine). Here is my XAML;
Best regards
Robert Warnestam
I have a map with several overlapped items on it. I want to programmatically highlight one or several items by changing the ZIndex. Unfortunatly my ZIndex binding is not working (but the other ones works fine). Here is my XAML;
<
telerik:RadMap
Margin
=
"12"
Name
=
"radMap1"
>
<
telerik:InformationLayer
x:Name
=
"informationLayer"
>
<
telerik:InformationLayer.ItemTemplate
>
<
DataTemplate
>
<
Ellipse
Name
=
"myEllipse"
telerik:MapLayer.Location
=
"{Binding Location}"
telerik:MapLayer.BaseZoomLevel
=
"9"
Width
=
"200"
Height
=
"200"
Stroke
=
"{Binding Stroke}"
StrokeThickness
=
"3"
Fill
=
"{Binding Fill}"
Canvas.ZIndex
=
"{Binding ZIndex}"
>
<
telerik:MapLayer.HotSpot
>
<
telerik:HotSpot
X
=
"0.5"
Y
=
"0.5"
/>
</
telerik:MapLayer.HotSpot
>
</
Ellipse
>
</
DataTemplate
>
</
telerik:InformationLayer.ItemTemplate
>
</
telerik:InformationLayer
>
Best regards
Robert Warnestam