I'm new to GIS mapping projects and have downloaded the trial version of Map Suite to begin evaluating for a project my company is about to begin. We would like to use Map Suite with the Google Map data. I am trying to perform the simple task of loading a map to a basic WPF window, but nothing appears. Could I please get some feedback on what I am doing wrong?
private void Window_Loaded(object sender, RoutedEventArgs e)
{
map1.MapUnit = GeographyUnit.Feet;
map1.CurrentExtent = new RectangleShape(-155.733, 95.60, 104.42, -81.9);
GoogleMapsOverlay gLayer = new GoogleMapsOverlay("C:/MapImages", @"my company URL",
@"my map key");
gLayer.MapType = GoogleMapsMapType.Hybrid;
map1.Overlays.Add(gLayer);
map1.Refresh();
}