We use the GoogleMapsOverlay and have the problem that ThinkGeo makes a lot of small requests to the Google Static Maps API retrieving a lot of tiles. Every single tile gets a big copyright notice from Google - even for Premier API users. The map looks really ugly this way. Users would complain.
Is there any setting to retrieve larger tiles from Google?
I have tried setting:
TileHeight = 2048,
TileWidth = 2048,
TileType = TileType.SingleTile,
on GoogleMapsOverlay
But it didn’t help.
Another thing:
As I understand Google’s documentation, the Google Static Maps API is not designed to be used with tiles - why is ThinkGeo using this API anyway? There would be alternatives such as the JavaScript-API - sure a browser control wouldn’t allow transparency with other layers. But I guess the Google Maps layer would always be the base layer with others on top of it.