Как вписать масштаб в конкретный маркер в реагировать родной и можно выбрать любой другой маркер на карте? - PullRequest
1 голос
/ 03 октября 2019

В этом случае, когда приложение инициализируется, Pin-маркер устанавливается в текущей позиции, но на той же карте у меня есть другие маркеры, когда я пытаюсь выбрать другие маркеры, которые он снова подходит в текущей позиции, какрешить эту проблему? Мне нужно выбрать любой маркер ... и ... Когда я нахожу какое-то место (с местами Google), он устанавливает новый маркер, устанавливает новое положение и устанавливает камеру на текущий маркер поиска с увеличением этого выбранного маркера,и моя другая проблема заключалась в создании функции для получения текущего местоположения (пользователя устройства) с помощью кнопки ... кто-то может мне помочь ???

<View style={styles.container}>
    <StatusBar hidden />
    <MapView
      onPress={this.handleMapPress}
      style={StyleSheet.absoluteFill}
      ref={map => (this.mapView = map)}
      rotateEnabled={true}
      scrollEnabled={true}
      showsMyLocationButton={true}
      followsUserLocation={true}
      showsUserLocation={true}
      zoomEnabled={true}
      showsPointsOfInterest={true}
      showBuildings={false}
      //region={this.props.region}
      initialRegion={region}
      provider="google">
      {!!location && (
        <MapView.Marker
          coordinate={location}
          onPress={this.handleMarkerPress}>
          <Image
            source={isAddressVisible ? placholder2 : placholder}
            style={styles.icon}
          />
        </MapView.Marker>
      )}
      {this.state.coordinates.map(
        (coordinates, index, title, description, location) => (
          <MapView.Marker
            onPress={this.handleMapPress}
            ref={mark => (coordinates.mark = mark)}
            key={`coordinate_${index}`}
            title={coordinates.title}
            description={coordinates.description}
            coordinate={{
              latitude: coordinates.latitude,
              longitude: coordinates.longitude,
            }}>
            <Image
              source={isAddressVisible ? placholder2 : placholder}
              style={styles.icon}
            />
          </MapView.Marker>
        )
      )}
      <MapView.Marker coordinate={this.props.region} >
          <Image
            source={ markerImage}
            style={styles.icon}
          />
      </MapView.Marker>
    </MapView>

вот кнопка для вызова текущего местоположения:

        <TouchableOpacity
       onPress={this.getlocation}
      style={styles.fab2}>
            <Image
              source={require('../assets/gps.png')}
              style={{
                width: 35,
                height: 35,
                margin: 10,
                tintColor: 'white',
              }}
            />
    </TouchableOpacity>

1 Ответ

1 голос
/ 17 октября 2019

У меня есть решение этой проблемы, вот закуска к вашему прочтению ...

вот простой код ниже:

  pickLocationHandler = event => {
const coords = event.nativeEvent.coordinate;

this.map.animateToRegion({
  ...this.state.focusedlocation,
  latitude: coords.latitude,
  longitude: coords.longitude,
});

this.setState(prevState => {
  return {
    focusedlocation: {
      ...prevState.focusedlocation,

      latitude: coords.latitude,

      longitude: coords.longitude,
    },

    locationChosen: true,
  };
});
};

getLocationHandler = () => {
navigator.geolocation.getCurrentPosition(
  pos => {
    const coordsEvent = {
      nativeEvent: {
        coordinate: {
          latitude: pos.coords.latitude,

          longitude: pos.coords.longitude,
        },
      },
    };

    this.pickLocationHandler(coordsEvent);
  },

  err => {
    console.log(err);

    alert(
      'Ocorreu um erro ao carregar sua localização, por favor ligue o GPS!'
    );
  }
 );
};

, и я вызываю эту функцию по моемуСозданная кнопка:

        <TouchableOpacity
     onPress={this.getLocationHandler}
      style={styles.fab2}>
            <Image
              source={require('../assets/gps.png')}
              style={{
                width: 35,
                height: 35,
                margin: 10,
                tintColor: '#FF3D00',
              }}
            />
    </TouchableOpacity>

Вот ссылка на полный код:

https://snack.expo.io/@matheus_cbrl/react-native-maps-autocomplete---address---current-location-button

Пожалуйста, если это ответило на вашу возможную проблему, нравится !! :)

...