hello,
I want to present multiple legends on radMap, each legend item I want to present is actually a userControl that I build and it contains spectrum, numbers and some other buttons and options.
my final result is to have the map layer and above it a layer in witch allow the user drag and drop the legends all over the map (in order to place them wherever he wants)
so basically i need a layer that:
1. transparent
2. I want it not to block the layer below it
3. I want it to allow drag and drop
attached a png to show what i mean
I'm trying to use itemsControl in information layer in order to bind MapLeged to it but no success.. nothing presented on the map
this is my code in generally:
<telerik:RadMap>
<telerik:InformationLayer x:Name="informationLayer">
<ItemsControl itemsSource= " {Binding LayersProvider.Layers} "
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate......./>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<contentControl content={Binding LegendContext}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</telerik:InformationLayer>
<telerik:VisualizationLayer......................./>
</telerik:RadMap>
<telerik:MapLegend x:Name="mapLegend"
Layer="{Binding informationLayer}" />
maybe you will have an idea for me.
thank you so match
stav