无法获得对MapView的引用-react-native-maps

时间:2019-07-15 20:49:08

标签: reactjs react-native react-native-maps

我一直在尝试使用MapView上的方法对区域进行动画处理,为此我需要访问ref,但是它是未定义的。其他一切都正常工作,我只是无法获得引用,并且每当我尝试调用方法时,例如`

this.map.animateToRegion({
  latitude: 0,
  longitude: 0,
  latitudeDelta: 1,
  longitudeDelta: 1
});

我收到一条错误消息:

  

无法读取未定义的属性“ animateToRegion”

<MapView
  ref={r => this.map = r}
  mapPadding={{ top: 0, left: 0, right: 0, bottom: 400 }}
  provider='google'
  style={{ flex: 1 }}
  region={this.region}
>
  {this.renderBarberMarkers()}
</MapView>

4 个答案:

答案 0 :(得分:1)

可以使用的钩子

首次导入useRef, useEffect

import React, {useRef, useEffect} from 'react';

然后

const mapRef = useRef(null);

添加您的MapView元素:

<MapView
 provider={PROVIDER_GOOGLE}
 ref={mapRef} />

您可以找到正在使用的MapRef

useEffect(() => {
    if (mapRef) {
      console.log(mapRef);
    }
});

答案 1 :(得分:0)

您尝试过使用

React.createRef();

与您的地图一起显示?

我所做的就是像这样将其导出到班级之外

export let mapRef: MapView | null;

,还创建了导出功能,例如

export function animateToRegion(region: Region, duration?: number) {
  if (mapRef) {
    mapRef.animateToRegion(region, duration);
  }
}

和我的MapView看起来像这样

    <MapView
 ref={(c) => mapRef = c}
 showsMyLocationButton={false} />

在我的课外,这样,如果它是一个组件,则可以轻松地调用它。

答案 2 :(得分:0)

这是mapView

              <MapView
                ref={(map) => { this.map = map; }}
                showsUserLocation={true}
                showsMyLocationButton={true}
                initialRegion={this.state.region}
            />

然后,您需要致电

//animate to user current location
this.map.animateToRegion(yourRegionObject,1000)

我正在这样使用;

//to get user location
getLocation(){

    navigator.geolocation.getCurrentPosition(
        (position) => {
            let latitude = parseFloat(position.coords.latitude);
            let longitude = parseFloat(position.coords.longitude);

            console.log('location position: ', position);

            let region = {
                latitude: latitude,
                longitude: longitude,
                latitudeDelta: 0.0522,
                longitudeDelta: 0.0321,
            };

            this.setState({region: region});

            console.log('position: ', position);
            console.log('this.map: ', this.map);

            //animate to user current location
            this.map.animateToRegion(region,1000)


        },
        (error) => console.log('position error!!!', error),
        {enableHighAccuracy: false, timeout: 3000}
    );
}

答案 3 :(得分:0)

如果您使用钩子,请按以下方式操作:

功能之上:

const mapView = React.createRef();
const animateMap = () => {
    mapView.current.animateToRegion({ // Takes a region object as parameter
        longitude: 28.97916756570339,
        latitude: 41,
        latitudeDelta: 0.4,
        longitudeDelta: 0.4,
    },1000);
}

为您的MapView提供这样的引用:

<MapView provider={PROVIDER_GOOGLE} region={{
       latitude: 37.78825,
       longitude: -122.4324,
       latitudeDelta: 0.015,
       longitudeDelta: 0.0121,
   }}
   ref={mapView}
   style={{flex:1}}>
</MapView>

最后要做的是触发动画,您可以执行以下操作:

<TouchableOpacity onPress={animateMap}><Text>Start</Text></TouchableOpacity>