I am using GoogleMapsOverLay. My Company have a Google Work License.
Adding clientId and privateKey works fine when using TileMode = GoogleMapsTileMode.MultiTile.
But when I change TileMode to GoogleMapsTileMode.SingleTile, no licenseinformation is added to the resulting request to maps.google.com/maps/api/staticmap. The result is that i only am getting an 640*640 image. This is due to max for the free version. This seems like a bug.
Code:
GoogleMapsOverlay worldOverlay = new GoogleMapsOverlay(cacheDirectory, CLIENT_ID, SIGNATURE);
worldOverlay.MapType = GoogleMapsMapType.Satellite;
worldOverlay.TileMode = GoogleMapsTileMode.SingleTile;
Regards
Lars