Google Maps V2:旋转地图是否会改变 TileOverlays 的方向?

Google Maps V2: Does rotating the map change the orientation of TileOverlays?

背景:我想在地图上画几个多边形(总共几千个坐标)。这在 Overlays 的 Google Maps V1 上运行得非常快。但是 Google Maps V2 似乎不符合条件。 首先,我尝试通过

将多边形直接添加到地图
googleMap.addPolygon(myPolygonOptions);

但这不仅速度慢得无法使用,而且似乎也有问题,因为它总是会忘记一些多边形。 然后我尝试通过绘制路径在地图上方的不可见视图上绘制多边形。但是方法

projection.toScreenLocation(geoCoordinate); 

与其 "toPixels" Google Maps V1 对应物是一个笑话。其中 Google Maps V1 需要 1 秒,Google Maps V2 需要 21(!)秒,所以这也无法使用。

然后我想试试 Overlays。 Ground overlays 似乎是我要找的:

A ground overlay is an image that is fixed to a map. Unlike markers, ground overlays are oriented against the Earth's surface rather than the screen, so rotating, tilting or zooming the map will change the orientation of the image. Ground overlays are useful when you wish to fix a single image at one area on the map.

但后来我在 this posting 中读到一条评论说它性能不佳,甚至不能很好地工作。

所以最后的希望是Tile Overlays。问题是:当我旋转地图时,图块叠加层会发生什么情况。它们是否也改变方向,还是会保持加载时的方向?

[更新]
我尝试了 GroundOverlays,它们非常快,即使在旧的智能手机上也是如此,所以我会选择这种方法。

图块将与地图一起旋转。 TileProvider 根本不会意识到旋转。绘制瓷砖时始终朝北。您可以查看这个 SO 问题的答案以获得非常方便的磁贴提供程序:Google Maps API v2 draw part of circle on MapFragment