Хотите получить текущее местоположение от реагировать родной JS + ключ API Google - PullRequest
0 голосов
/ 24 апреля 2019

Я хочу получить текущее местоположение в тексте / оповещении в ответе на собственное название города в тексте

Вот мой код:

getData(){

        Geocoder.init("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");

        Geocoder.from(41.89, 12.49)
            .then(json => {
                var addressComponent = json.results[0].formatted_address;
          console.log(addressComponent);
          console.log(addressComponent)
         alert(addressComponent);
            })
          .catch(error => console.warn(error));
        }

Ответы [ 3 ]

1 голос
/ 27 апреля 2019

getData () {

    Geocoder.init("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");

    Geocoder.from(41.89, 12.49)
        .then(json => {
            var addressComponent = json.results[0].formatted_address;
      console.log(addressComponent);
      console.log(addressComponent)
     alert(addressComponent);
        })
      .catch(error => console.warn(error));
    }

Я хочу объединить это с текущим местоположением широты и долготы

1 голос
/ 24 апреля 2019

Используйте этот код для получения текущей широты и долготы:

navigator.geolocation.getCurrentPosition(
(position) => {
    console.log('lat',position.coords.latitude);
    console.log('lng',position.coords.longitude);
    //Your Code
    // ( DO fetch call to get address from lat and lng
    // https://maps.googleapis.com/maps/api/geocode/json?key= 
    <\API_KEY_HERE>&latlng="latitude","longitude"&sensor=true )
},
(error) => this.setState({ error: error.message }),
   { enableHighAccuracy: true, timeout: 20000, maximumAge: 1000 },
);
0 голосов
/ 24 апреля 2019

Завершите пример с Geolocation API.

Как я уже сказал в комментарии;вам не нужно Google API, чтобы получить текущие координаты устройства.Вы можете использовать Geolocation API

import React, { Component } from 'react';
import { View, Text } from 'react-native';

class FindMyLocationExample extends Component {
  constructor(props) {
    super(props);

    this.state = {
      latitude: null,
      longitude: null,
      error: null,
    };
  }

  componentDidMount() {
    navigator.geolocation.getCurrentPosition(
      (position) => {
        this.setState({
          latitude: position.coords.latitude,
          longitude: position.coords.longitude,
          error: null,
        });
      },
      (error) => this.setState({ error: error.message }),
      { enableHighAccuracy: true, timeout: 10000, maximumAge: 1000 },
    );
  }

  render() {
    return (
      <View style={{ flexGrow: 1, alignItems: 'center', justifyContent: 'center' }}>
        <Text>Latitude: {this.state.latitude}</Text>
        <Text>Longitude: {this.state.longitude}</Text>
        {this.state.error ? <Text>Error: {this.state.error}</Text> : null}
      </View>
    );
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...