我在我的应用程序中集成了谷歌地图。我能够找到我当前的位置。我希望地图在我改变方向时自动旋转。我怎样才能做到这一点。
谢谢
警告:不是专家
根据Google API docs,听起来您需要调整方位,例如GroundOverlay#setBearing中所述。
公共最终类 GroundOverlay
地面叠加层是固定在地图上的图像。地面叠加层具有以下属性:
...
轴承
图像应按顺时针方向旋转的量。旋转的中心将是图像的锚点。这是可选的,默认方位角为 0,即图像被对齐,因此向上是北。
例子:
GoogleMap map = ...; // get a map.
BitmapDescriptor image = ...; // get an image.
LatLngBounds bounds = ...; // get a bounds
// Adds a ground overlay with 50% transparency.
GroundOverlay groundOverlay = map.addGroundOverlay(new GroundOverlayOptions()
.image(image)
.positionFromBounds(bounds)
.transparency(0.5));