Hello,
I created a simple map with one GoogleOverlay.
When I use the mouse to make a pan on the Map, the GoogleOverlay is not completed. It's working fine when I use the PanZoomBar to do the Pan. No additional requests are sent
Do I have to force the refresh of the GoogleOverlay?
Here is the code I wrote.
private void map1_Loaded(object sender, RoutedEventArgs e)
{
map1.MapUnit = ThinkGeo.MapSuite.SilverlightCore.GeographyUnit.Meter;
map1.MapTools.PanZoomBar.Visibility = System.Windows.Visibility.Collapsed;
GoogleOverlay google = new GoogleOverlay("Google", "****", "****");
google.GoogleMapType = GoogleMapType.Satellite;
map1.Overlays.Add(google);
map1.CurrentExtent = new RectangleShape(-13939426.6371, 6701997.4056, -7812401.86, 2626987.386962);
map1.Refresh();
}
Thank you
Nicolas