反应本机地图折线未显示

时间:2019-01-21 12:51:36

标签: react-native react-native-maps

这是我的代码。


<View style={styles.map}>
        <MapView
          style={styles.map}
          initialRegion={this.state.region}
          onRegionChangeComplete={this.onRegionChange}
        />
        {
          this.state.allow_set_location ?
            <View style={styles.markerFixed}>
              <Image style={styles.marker} source={marker} />
            </View> : null
        }

        <Polyline
          coordinates={this.state.route_data}
          strokeWidth={1}
          strokeColor="red"
          fillColor="rgba(255,0,0,0.5)"
        />
      </View>

我无法获得折线。 我的route_data是对象数组,例如[{纬度:数据,经度:数据} .....]

1 个答案:

答案 0 :(得分:1)

5-0 = 5应该用5-1 = 4组件包装,而不是并排包装。

Polyline