Не удается прочитать свойство 'широта' не определено - PullRequest
0 голосов
/ 14 сентября 2018

Мне нужна помощь, это проблема с watchPosition() или я что-то не так делаю?

Вот код:

import { Geolocation } from '@ionic-native/geolocation';

 private lat: any;
 private lng: any;
 constructor( private geolocation: Geolocation ) {

 let watch = this.geolocation.watchPosition();
watch.subscribe((data) => {

 // data can be a set of coordinates, or an error (if an error occurred).
 this.lat= data.coords.latitude;
 this.lng= data.coords.longitude;
},(error)=>{console.log(error);});

  }

1 Ответ

0 голосов
/ 14 сентября 2018

, если вы хотите получить текущую широту и долготу, используйте метод getCurrentPosition

this.geolocation.getCurrentPosition().then((position) => {

      this.latitude = position.coords.latitude;
      this.longitude = position.coords.longitude;
     });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...