Hi Johnny,
I am facing a new problem when trying to use GoogleOverlay.
I am able to display the googlemap in silverlight user control but when I zoom in after certain extent it is throwing me a javascript error as below.
Error: Sys.InvalidOperationException: ImageError error #4001 in control 'SilverlightMapConnector1': AG_E_NETWORK_ERROR
All I am doing is using the following piece of code in the Loaded event of the Grid in silverlight user control
mymap.MapUnit = GeographyUnit.Meter;
mymap.Background = new SolidColorBrush(Color.FromArgb(255, 156, 187, 216));
mymap.CurrentExtent = new RectangleShape(-13939426.6371, 6701997.4056, -7812401.86, 2626987.386962);
GoogleOverlay overlay1 = new GoogleOverlay();
overlay1.GoogleMapType = GoogleMapType.Roadmap;
overlay1.Name = "Road (Overlay)";
mymap.Overlays.Add(overlay1);
Attached is the screenshot of the error.Can you please give me a solution for this