gpt4 book ai didi

javascript - React Native Maps - 自定义标记图像不在更高的 Android 版本中呈现

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:04 27 4
gpt4 key购买 nike

图像不显示在标记上。

您好,我正在使用 React-Native 为 Android 开发一个应用程序,它使用 react-native-maps包。

除 Android 7.1+ 外,所有平台都可以正常运行。

标记中包含的所有图像都不会显示/加载

在标记组件中有一个名为“image”的 Prop ,只能用于本地镜像。但就我而言,我需要渲染远程图像 Url,所以我无法使用这个 Prop 所以我决定使用自定义标记在我用更高版本的 Android 测试我的应用程序之前,它一直运行良好

Here you can see the callout but the image is not rendered

最佳答案

使用 image 属性为标记定义图像。它适用于 android 7+ 版本

return (
<MapView.Marker
key={`marker-${index}`}
coordinate={{ latitude: Number(latitude), longitude: Number(longitude) }}
onPress={options.onPress ? () => options.onPress(marker) : false}
image={icons[marker.type] || icons.default}
style={styles.marker}
identifier={marker._id}
/>
);

关于javascript - React Native Maps - 自定义标记图像不在更高的 Android 版本中呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50993542/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com