React Native Maps辅助功能标签错误,无法渲染地图标记

时间:2017-09-21 22:23:42

标签: android google-maps react-native

Error screen

尝试在react-native-maps包MapView上渲染标记时出现此错误。我试图更新我的本机版本但遇到了很多其他错误,所以我坚持使用0.38.1。我尝试使用字符串值明确设置一个名为'accessibilityLabel'的道具,但这不起作用。

<MapView
  region={{
    latitude: this.state.lat,
    longitude: this.state.lng,
    latitudeDelta: this.state.latDelta,
    longitudeDelta: this.state.lngDelta,
  }}
  onRegionChangeComplete={this.onRegionChange}
>
  <MapView.Marker
    coordinate={this.state.marker.latlng}
    title={this.state.marker.title}
  />
</MapView>

提前致谢。

0 个答案:

没有答案