如何旋转地图视图?
我是一名新的 Android 开发人员。尝试以圆周运动旋转MapView
。 但我不知道如何开始。
你有一个简单的代码来旋转MapView
吗?
I am a new developer for Android. Tried to rotate MapView
in circular motion.
But I don't know how to begin.
Do you have a simple code to rotate the MapView
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我过去曾这样做过,它需要创建一个自定义 ViewGroup,在dispatchDraw() 方法中旋转 Canvas。您还需要增加 MapView 的大小(以便在旋转时绘制足够的像素。)您还需要在dispatchTouchEvent() 中旋转触摸事件。或者,如果您使用 Android 3.0,您可以简单地调用 theMapView.rotate() :)
I have done this in the past and it requires to create a custom ViewGroup that rotates the Canvas in the dispatchDraw() method. You also need to increase the size of the MapView (so that it draws enough pixels when rotated.) You will also need to rotate the touch events in dispatchTouchEvent(). Or if you use Android 3.0 you can simply call theMapView.rotate() :)
一般情况下,您始终可以创建 仿射变换与您需要的角度旋转。在一般情况下,您执行以下形式的矩阵乘法:
其中 (x,y) 是您的初始坐标,θ 是您的旋转角度,(x',y') 是结果变换。
As a general case, you can always created an Affine Transform with the angled rotation you need. In the general case, you do a matrix multiplication of this form:
Where (x,y) are your initial coordinates, θ is your angle of rotation, and (x',y') are the resultant transformation.