Реактивный полигон карты не обновляется при переходе к другому компоненту с видом карты. - PullRequest
0 голосов
/ 15 января 2019

когда я перехожу к другому компоненту с полиганом mapView, не загружая новые полиганы в следующем компоненте, mycode находится здесь: я использую состояние для загрузки координат полиганов

<MapView key={10}
                    style={{ height: 450 }}
                    scrollEnabled={true}
                    showsUserLocation={true}
                    followUserLocation={true}
                    toolbarEnabled={true}
                    cacheEnabled={false}
                    loadingEnabled={false}
                    // liteMode={true}
                    initialRegion={this.state.region}
                // region={this.state.region}
                >
                    <MapView.Polygon
                        coordinates={this.state.polygon1}
                        fillColor="#ff7700"
                        strokeColor="#666"
                        strokeWidth={1}
                    />


                    <MapView.Polygon
                        coordinates={this.state.polygon2}
                        fillColor="#ff7700"
                        strokeColor="#666"
                        strokeWidth={1}
                        tappable={true}
                    />


                </MapView>
...