Hi Michael,
Please refer the following points about your questions:
1. The default tile type of layer overlay is MultiTile, so the tiles obviously fill in one-by-one.
2. Map draws tiles with multi-thread. When you quickly zoom in map, map will create a lot of thread to draw tiles, so the max number of threads will change bigger. But don’t worry. After drawing the tiles, the threads will be closed.
We create a sample to test google maps, but we cannot reproduce your problem that the different picture formats cause difference result. The vs output shows the same things between the different picture formats. The picture format is only used when send request and save tile, it is impossible that the picture format causes app slow.
The google maps is slow and erratic which is caused by a bad internet connect. You can set the tile cache to resolve it. Please refer the following code:
GoogleMapsLayer googleMapsLayer = new GoogleMapsLayer();
googleMapsLayer.TileCache = new FileBitmapTileCache(@"mnt/sdcard/MapSuiteSampleData/", "GoogleMapsTileCache");
Thanks,