我正在使用SKMaps v3.0 SDK for Android,我嘗試將用戶標題模式更改爲Rotating_Map,以便讓用戶能夠使用標題位置旋轉地圖。標題模式旋轉地圖
這裏是我的代碼:
private void followTheUserWithHeading(int transitionTime){
mapView.getMapSettings().setCurrentPositionShown(true);
mapView.getMapSettings().setFollowPositions(true);
mapView.getMapSettings().setHeadingMode(SKMapSettings.SKHeadingMode.ROTATING_MAP);
mapView.animateToBearing(1.0f,true,transitionTime);
mapView.centerOnCurrentPosition(17,true,500);
}
隨着followTheUserWithHeading()被調用的方法onRouteCalculationCompleted。
不幸的是,地圖不會隨手機方向旋轉。
N.B. :用戶錐是可見的,當使用SKHeadingMode.ROUTE時不是這種情況。所以看起來我的代碼並不完全是廢話......我也嘗試過ROTATING_HEADING,但不是更好。
非常感謝:)
我有向您提供skmaps庫相關答案。如果你想使用標題信息旋轉地圖,很明顯你需要訪問那個標題信息,並且使用傳感器來獲取。 –