某些自定义标记未出现在Android react-native-maps上

时间:2019-03-26 19:27:57

标签: android react-native react-native-maps

在我们的应用程序中,我们将在他登录时获取用户位置(单击登录->获取位置->在redux中保存位置->导航至主屏幕)。安装Home组件时,应使用该位置从用户周围的区域获取数据。

在iOS中,所有标记均正确渲染,但在Android设备中,并非所有标记均被渲染,只有一部分标记(奇怪的是,它们全部为image1或image2)。

只有当我们再次调用 getDataFromRegion 函数时,所有标记才能正确呈现。知道我们在做什么错了吗?

class Login extends Component {

   handleLogin = (u, p) => {

      getLocation(location => {

         let region = {
            latitude: location.coords.latitude,
            longitude: location.coords.longitude,
            latitudeDelta: 0.06,
            longitudeDelta: 0.06
         }

         /* save location in redux */
         this.props.setLocation(region)
         login(u, p).then(() => _gotoHome())
      })
   }
}

class Home extends Component {

    componentWillMount() {

       if(this.props.location !== undefined) {

           initialRegion = {
               latitude: this.props.location.latitude,
               longitude: this.props.location.longitude,
               latitudeDelta: 0.06,
               longitudeDelta: 0.06
            }
        }
     }

     componentDidMount() {
        /* set data in redux */   
           this.getDataFromRegion(initialRegion)
     }

     render() {
        this.props.data.map((data, index) => data.visible ? <CustomMarker key={index} data={data}/> : null)
        }
     }


class CustomMarker extends Component {
     render() {
         const {data} = this.props
         const coords = { latitude: data.lat, longitude: data.lng }

         return (

             <MapView.Marker
                 coordinate={coords}
                 onLoad={() => this.forceUpdate()}
                 tracksViewChanges={Platform.OS === 'android' ? false : true}
             >
                 <Image 
                    onLoad={() => this.forceUpdate()} 
                    source={data.a === '0' ? image1 : image2}
                    style={{width: 60, height: 60}}
                 />
             </MapView.Marker>
         )
     }
}

1 个答案:

答案 0 :(得分:0)

似乎删除了Image组件并使用了MapView.Marker属性 image 使其正常工作。此外,在MapView中使用 opacity:0 渲染虚拟MapView.Marker也解决了在第一次渲染调用时出现默认标记的问题。