Greetings,
I have recently started working on an application for my team to use to help us proactively monitor some of our customers sites using a map interface.
GMaps has been wonderful and is very easy to use, however, each day I come in to work on my project the map will load a hadnful of times and then stops.
It then fills my GMapControl with blue tiles that read "Exception:The remote server returned an error:(499) Failclose."
I am trying to use BingMaps, and I have obtained a key from bing. However it does this on any MapProvider I try to use.
Not sure if my code is wrong(Followed the demo) or if im having some sort of firewall issue(I have turned off my machines firewall temporarily to no avail)
My Code:
I have recently started working on an application for my team to use to help us proactively monitor some of our customers sites using a map interface.
GMaps has been wonderful and is very easy to use, however, each day I come in to work on my project the map will load a hadnful of times and then stops.
It then fills my GMapControl with blue tiles that read "Exception:The remote server returned an error:(499) Failclose."
I am trying to use BingMaps, and I have obtained a key from bing. However it does this on any MapProvider I try to use.
Not sure if my code is wrong(Followed the demo) or if im having some sort of firewall issue(I have turned off my machines firewall temporarily to no avail)
My Code:
GMap.NET.MapProviders.BingMapProvider.Instance.ClientKey = "my_key_goes_here";
gmap.MapProvider = GMap.NET.MapProviders.BingMapProvider.Instance;
GMap.NET.GMaps.Instance.Mode = GMap.NET.AccessMode.ServerOnly;
gmap.Position = new PointLatLng(41.088327, -96.4748517);
Please advise.