反応ネイティブアプリケーションにreact-native-mapsを使用しています。マップ上のMapViewに画像を投稿する必要があります。しかし、私はウェブからイメージを取得します。一方、私が知っているように、地元の画像だけが反応ネイティブマップでMapviewに追加できます。 react-native-maps MapView
にuri
の画像を投稿する方法はありますか?反応ネイティブマップでリモートイメージURIを使用するMapView
私は
<MapView style={{flex: 1}}
loadingEnabled={true}
region={this.state.region}
onRegionChangeComplete={this.onRegionChangeComplete}>
<MapView.Marker
coordinate={{latitude: this.props.user_location[0], longitude: this.props.user_location[1]}}
title={this.props.user_name}
description={this.props.user_desc}>
<Image source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} />
</MapView.Marker>
</MapView>
にしようとした結果が
され、その後、私はちょうど
<MapView style={{flex: 1}}
loadingEnabled={true}
region={this.state.region}
onRegionChangeComplete={this.onRegionChangeComplete}>
<MapView.Marker
coordinate={{latitude: this.props.user_location[0], longitude: this.props.user_location[1]}}
title={this.props.user_name}
description={this.props.user_desc}>
</MapView.Marker>
</MapView>
で<Image/>
を削除し、その結果が
おかげで男のようですが、私はあなたの答えに応じて私の質問を更新しました。 私は試しましたが、助けにはなりませんでした。 –
私はそれを解決:)良い一日を –