Я застрял с этой проблемой.Я не могу получить координаты, используя Ионная геолокация .Всегда возвращать "{}". Кто-нибудь может мне помочь?Это мой код.
import { Geolocation, GeolocationOptions } from '@ionic-native/geolocation';
constructor(
private geolocation: Geolocation,
public platform: Platform,
) {}
this.platform.ready().then(()=>{
this.geolocation.getCurrentPosition(options)
.then((position) => {
console.log('Geolocation successful', JSON.stringify( position));
this.app.alertMsg( JSON.stringify( position) );
// let query = '?lat=' + position.coords.latitude + '&lng=' + position.coords.longitude;
}).catch((error) => {
console.log('Error getting location', JSON.stringify( error));
});
})