是否可以在MapView之外重新使用react-native-maps标记?

时间:2019-12-18 11:41:02

标签: react-native react-native-maps

我正在构建一个React Native应用程序,该应用程序允许用户使用MapView和图像文件中的“本地地图”创建“世界地图”。然后,用户可以在这些地图上放置图钉。

我想重用react-native-maps中的组件,但是当它在MapView之外时,它似乎没有呈现。我尝试从CSS设置它的绝对位置,并使用centerOffset道具,但是似乎没有任何作用。

任何看起来相似的想法或解决方案?

```javascript
    <ImageBackground
        style={{aspectRatio: value.width / value.height}}
        source={{uri}}>
        {extra.length > 0 &&
        extra.map((marker, index) => (
        <Marker
        style={{
            position: 'absolute',
            top: marker.coordinates.y,
            left: marker.coordinates.x,
        }}
        pinColor={this.findColor(marker, buttons)}
        />
    </ImageBackground>
```

最好,朱尔斯

0 个答案:

没有答案