Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中使用 bing 地图。我想随着手机的旋转而旋转地图,以便地图始终显示在手机的方向上。有没有办法做到这一点?我从指南针获得旋转信息,但我不知道如何旋转地图,所以它会随着手机旋转。
有人能帮我吗?
不幸的是,无法在 Map 控件本身内旋转地图 - 但是,如果您确实需要旋转地图,可以使用将 Map 控件设置RenderTransform为 a RotateTransform,并根据指南针的读数更改角度。
RenderTransform
RotateTransform
这样做的缺点是性能不会很好,并且您必须使地图控件大于屏幕尺寸,因为当您旋转控件时,边缘会显示出来。祝你好运!