Hi,I would like a Maptip to popup that contains some text and an image. I have the maptip popping up on hover with the text from the PHOTODATE field, but the image does not show and I'm not sure why. I've tried jpeg, png, and bmp, none work (the images in the FILEPATH field are jpegs). I can't even get an image to show up when not trying to retrieve it from a field value. Any help is greatly appreciated. My code:<esri:FeatureLayer ID="FeatureLayerResDockPhotos2011"
Url="SOME URL"
Where="1=1"
OutFields="PHOTODATE,FILEPATH">
<esri:FeatureLayer.MapTip>
<Border Style="{StaticResource menuBorder}">
<Border.Effect>
<DropShadowEffect Color="Black" Direction="-45"
BlurRadius="20" Opacity=".75" />
</Border.Effect>
<StackPanel Margin="7">
<TextBlock Text="{Binding [PHOTODATE]}" FontWeight="Bold"
Foreground="White" />
<Image Source="{Binding [FILEPATH]}" Height="150"
Width="150" />
</StackPanel>
</Border>
</esri:FeatureLayer.MapTip>
<esri:FeatureLayer.Clusterer>
<esri:FlareClusterer
FlareBackground="#99FF0000"
FlareForeground="White"
MaximumFlareCount="9" />
</esri:FeatureLayer.Clusterer>
</esri:FeatureLayer>