【发布时间】:2020-04-17 15:17:22
【问题描述】:
我尝试在 ionic 项目中使用 Ionic Device Orientation 来查找设备的前进方向,就像您在 Google 地图中的蓝色东西一样,以在地图上显示您要前往的方向。我的最终目标是在离子应用程序中集成一个指南针。
这是我的功能。
public test() {
this.deviceOrientation.getCurrentHeading().then(
(data: DeviceOrientationCompassHeading) => console.log(data),
(error: any) => console.log(error)
);
}
我的 Angular 版本是 5.2.11
我的 Ionic 版本是 4.18.0
如果您知道这可能来自哪里,或者如果您对如何在 Ionic 应用程序中集成指南针有任何建议,请随时分享,谢谢!
【问题讨论】:
标签: typescript ionic-framework device-orientation