Faire de tous les fabricants à montrer dans la carte native React

render() {
    return (
        <MapView>
            {this.state.pois && this.state.pois.map(marker => (
                <CustomMarker
                    key={marker.id}
                    isZoomed={this.isMapZoomed(this.state.displayedRegion)}
                />
            ))}
        </MapView>
    );}
Tame Teira