Select to view content in your preferred language

MapTips not displaying in ArcGIS 10.

672
1
02-03-2012 10:37 AM
ChandraKrish
New Contributor
Hi,

We have a current working setup of ArcGIS 9.3.1 in which MapTips from layers are displayed on the silverlight control.

I wanted to test the same mxd files in the ArcGIS 10 to identify any potential issues. The same map tips that are displayed properly in 9.3.1 doesn't show up on 10.

Is there is any specific option to be enabled/disabled to display MapTips in ArcGIS 10?

Thanks,
Chandra
0 Kudos
1 Reply
JenniferNery
Esri Regular Contributor
I don't recall any code-change that may affect this area. Try the following code:
   <esri:FeatureLayer ID="MyLayer" OutFields="*"
          Url="yourServiceUrl">
    <esri:FeatureLayer.MapTip>
     <Grid>
      <Grid.ColumnDefinitions>
       <ColumnDefinition Width="Auto"/>
       <ColumnDefinition Width="*"/>
      </Grid.ColumnDefinitions>
      <ItemsControl ItemsSource="{Binding Keys}" Grid.Column="0" />
      <ItemsControl ItemsSource="{Binding Values}" Grid.Column="1" />
     </Grid>
    </esri:FeatureLayer.MapTip>
   </esri:FeatureLayer>
0 Kudos