1

我需要在我的位置显示自定义图标,这些图标是从特定 URL 动态加载的。这是我的代码。

const PlacesMarker = props => {
    const { places } = props
    const [geoJson, setGeoJson] = useState([])

    useEffect(() => {
        if (places)
            renderPlaces(places)
    }, [places])

    const renderPlaces = (places) => {
        let features = places.content.map((item) => {
            return {
                type: "Feature",
                id: item.id,
                properties: {
                    id: item.id,
                    icon: item.type.iconUri,
                    name: item.name,
                    type: item.type.name
                },
                geometry: {
                    type: "Point",
                    coordinates: [item.location.lon, item.location.lat],
                },
            }
        })
        setGeoJson(features)
    }

    return (
        <View>
            {geoJson.length > 0 ?
                <MapboxGL.ShapeSource id={'places-map'}
                    shape={{ type: "FeatureCollection", features: geoJson }}>
                    <MapboxGL.SymbolLayer
                        id={Math.random().toString()}
                        style={{
                            iconImage: ['get', 'icon']
                            iconAllowOverlap: true,
                            // iconSize: 0.80,
                            iconIgnorePlacement: true,
                            textField: ['get', 'icon']
                        }}
                    />
                </MapboxGL.ShapeSource> : null
            }
        </View >
    )
}

export default PlacesMarker

在样式中,我使用了表达式“get”,它起作用了,因为我用 Icon URI 值设置了 textField,它显示了 uri。但是,如果我使用 URI 设置iconImage属性,则图标会成功显示

4

1 回答 1

1

在 react-native-mapbox-gl 7.0 中,如果iconImage是常量,则可以使用url-s。但如果它是一个表达式,它应该是 Images, 的 images 字典中的一个键<Images images={images} />

https://github.com/react-native-mapbox-gl/maps/issues/652

于 2020-02-07T05:26:56.117 回答