iOS Premium Edition 如何使用 HERE SDK 显示罗盘和比例尺?

How to show compass and scale with HERE SDK for iOS Premium Edition?

我正在使用 iOS 高级版 (v3.17) 的 Here SDK。是否有内置的指南针和比例尺显示在地图上(就像缩放/旋转地图时在 iOS 上的原生 HERE WeGo 应用程序中看到的那样)?一直在搜索文档,但找不到任何东西。如果没有内置方式...您介意在 Here WeGo 应用程序中分享这是如何完成的(代码会很棒)吗?

很遗憾,HERE SDK 中没有这样的 API。 HERE WeGo 应用实现了自己的比例视图和指南针 UI 组件。

指南针背后的想法是听NMAMapEventOrientationChanged events and rotate UIButton with compass image using CGAffineTransformMakeRotation based on map orientation value. Please check this example

比例视图背后的想法是聆听 NMAMapEventZoomLevelChanged events and update custom view(s) based on metersPerPointAtZoomLevel 价值。