Hi everyone,I have four featurelayers with maptip just like below and I found that the response time of the application seems been slowed down. Plus, sometimes the maptip doesn't stay on the map and sometimes it stays even my mouse has moved to other places, and it may not display the maptip. I guess these all result from the low response time. So does maptip slow down the performance? Or I lost some critical things in my codes? Thank you! 🙂
<esri:FeatureLayer ID ="EcocatParcelMaptip" Url="http://rmms-dev.atlas.illinois.edu/ArcGIS/rest/services/ecocatparcels_new/MapServer/0" Visible ="False"
OutFields ="PROJCODE" >
<!--<esri:FeatureLayer.OutFields>
<sys:String>PROJCODE</sys:String>
</esri:FeatureLayer.OutFields>-->
<esri:FeatureLayer.MapTip>
<Border esri:GraphicsLayer.MapTipHideDelay="00:00:01.5" CornerRadius="10" BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15">
<Border.Background>
<LinearGradientBrush EndPoint="1.038,1.136" StartPoint="0.015,0.188">
<GradientStop Color="#FFD1DFF2"/>
<GradientStop Color="#FF092959" Offset="0.946"/>
</LinearGradientBrush>
</Border.Background>
<Border.Effect>
<DropShadowEffect ShadowDepth="10" BlurRadius="14" Direction="300" />
</Border.Effect>
<StackPanel Orientation="Vertical" Margin="20,15,20,15">
<StackPanel Orientation="Horizontal" Margin="0,0,0,6">
<TextBlock Text="PROJCODE : " FontWeight="Bold" Foreground="#FF0F274E" FontSize="12" />
<TextBlock Text="{Binding [PROJCODE]}" Foreground="#FFFFFFFF" FontSize="12" FontStyle="Italic" FontFamily="Portable User Interface" />
</StackPanel>
</StackPanel>
</Border>
</esri:FeatureLayer.MapTip>
</esri:FeatureLayer>