Hello!
Can you please provide sample ( in xaml and/or xaml.cs ) of how to make the tiny map image appear inside the ThumbnailPane of the map in Infragistics.Silverlight.DataVisualization v9.2?
The old ThumbnailPane code in v9.1 that shows the tiny map image does NOT work with v9.2.
Also, you had good demo sample of the Map with v9.1 showing the basic features like NavigationPane and ThumbnailPane but NO demo sample in v9.2
Your help is much appreciated.
Thank you.
trifee
========================================================================
The following works with Infragistics Map v9.1 but NOT with v9.2
<Style x:Key="ThumbnailWorldStyle" TargetType
="Path">
="Fill">
>
="/tinyUS.png" />
="#ffffffff"/>
="1"/>
======================================================================
<
igMap:MapThumbnailPane Grid.Row="1" Grid.Column="0" Style="{StaticResource MapThumbnailStyle}" igMap:XamWebDock.Edge="InsideBottom" Margin="0,-200,0,48" VerticalAlignment="Top" HorizontalAlignment="Left" Height="Auto" Width="150" Background="Transparent"/>
==============================================================
<Style x:Key="MapThumbnailStyle" TargetType="igMap:MapThumbnailPane">
<Setter Property="WorldStyle" Value="{StaticResource ThumbnailWorldStyle}"/>
<Setter Property="WindowStyle" Value="{StaticResource ThumbnailWindowStyle}"/>
<Setter Property="PreviewStyle" Value="{StaticResource PreviewStyle}"/>
<Setter Property="ShadowStyle" Value="{StaticResource ShadowStyle}"/>
<Setter Property="ShadowOffset" Value="1, 1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="igMap:MapThumbnailPane">
<Grid>
<Border Style="{StaticResource PaneBorderStyle}">
<Canvas x:Name="RootElement" Margin="4"/>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
===================================================================
Hi!
I have solved this problem already. Thank you so much for the response.
Thank you for all the help!!!!
Sincerely,
8 Mar 2010 2:04pm
Have you reviewed this section of the documentation? The way of diplaying the tiny image may have changed since the previous version:
http://help.infragistics.com//NetAdvantage/DV/2009.2/CLR3.5/?page=SL_DV_xamWebMap_Display_Thumbnail_Pane.html
-Graham