0
我米使用native geolocation
模塊的離子2.繼拋出的錯誤是我的代碼離子2天然地理位置,沒有位置時關閉
import { Geolocation } from '@ionic-native/geolocation';
..
..
getLocation(){
this.platform.ready().then(() => {
this.geolocation.getCurrentPosition().then(pos => {
console.warn("latitude = "+pos.coords.latitude);
console.warn("longitude = "+pos.coords.longitude);
}, (error) => {
console.warn("Error in fetching location");
});
});
}
我M在Android手機應用程序的測試部分。一切正常,除了關閉位置時,控制檯不會拋出錯誤。任何人都可以告訴我如何在設備中關閉位置服務時發生錯誤?
感謝