I have a problem with intermintent redraw of the map during a MapClick event that generates a popup.
it is pretty disturbing for the viewer, is there a way to get rid of it?
Protected Sub Map1_Click(ByVal sender As Object, ByVal e As ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs) Handles Map1.Click
' get the click position.
Dim clickWorldPosition As PointShape = e.Position
' convert to screen point.
Dim clickScreenPoint As ScreenPointF = Map1.ToScreenCoordinate(clickWorldPosition)
.
.
.
.
.
.
Dim popup As CloudPopup
If Map1.Popups.Count = 0 Then
popup = New CloudPopup("Popup", e.Position, String.Empty, 200, 80, True, True)
popup.IsVisible = True
Map1.Popups.Add(popup)
Else
popup = DirectCast(Map1.Popups("Popup"), CloudPopup)
popup.Position = e.Position
popup.IsVisible = True
End If
popup.ContentHtml = GetPopupContent(selectedFeatures)
End Sub