geolocation
kullanmadan önce cihazların açık veya kapalı olduğunu kontrol edebilir miyim? Cihazların bulunduğu yer App need to run your location, please open your devices location
gibi uyarı mesajlarını göstermek istiyorum.Cihazların açık veya kapalı olup olmadığını kontrol edebilir Reaktif Yerel
Hem IOS hem de Android'de yerel konum ayarlarına gitmek için gidebilir miyim? Örneğin gibi
-
componentDidMount() {
// Check condition device location is open or close.
if(DevicesLocation === 'close') {
alert('App need to run your location, please open your devices location');
// other process
} else {
navigator.geolocation.getCurrentPosition(
(position) => {
var initialPosition = JSON.stringify(position);
this.setState({ initialPosition});
},
(error) => console.log(error.message)
);
}
}
Konum permi demek istiyor musunuz? Cihazda ssion var mı? –
Sorunuzu açıklar mısınız? Ne diye sorduğunu anlamak zor. –
@VladimirNul Yakında güncellenecektir! –