📅  最后修改于: 2023-12-03 15:15:51.801000             🧑  作者: Mango
如果你正在使用 Ionic 和 Capacitor 开发移动应用程序,你可能需要对位置信息进行操作和管理,这时候就需要使用 geolocation 插件。步骤如下:
npm install @ionic-native/geolocation
npm install @ionic-native/core
npm install @capacitor/geolocation
import { Geolocation } from '@ionic-native/geolocation';
constructor(private geolocation: Geolocation) {}
this.geolocation.getCurrentPosition().then((resp) => {
// resp.coords.latitude
// resp.coords.longitude
}).catch((error) => {
console.log('Error getting location', error);
});
以上是安装和使用 Geolocation 插件的基本步骤,希望对你开发移动应用程序有帮助。