开发者问题收集

标记传单未在反应组件中呈现 _ React 传单

2019-04-28
142

这是我的传单地图组件。当用户点击地图时,我想获取到达坐标。我可以正确获取坐标,但我还需要在地图上标记渲染。

<Map
        center={[35.4090, 51.1555]}
        zoom={18}
        maxZoom={20}
        attributionControl={true}
        zoomControl={true}
        onClick={this.handleClick}
        doubleClickZoom={false}
        scrollWheelZoom={true}
        dragging={true}
        animate={true}
        easeLinearity={0.35}
    >

        <Marker position={this.state.points === '' ? this.state.points : [35.4090, 51.1555]} icon={pointerIcon} key={this.state.points}>
            <Popup position={this.state.points}>
                Popup for any custom information.
                </Popup>
        </Marker>

    </Map>

 handleClick = (e) => {
        const { lat, lng } = e.latlng;
        this.setState({points: [lat,lng]})
    }

这是自定义图标。

import marker from '../../css/mapMarker.png'
import L from 'leaflet'

export const pointerIcon = new L.Icon({
    iconUrl: {marker},
    iconRetinaUrl: {marker},
    iconAnchor: [5, 55],
    popupAnchor: [10, -44],
    iconSize: [25, 55],
    shadowSize: [68, 95],
    shadowAnchor: [20, 92],
})
1个回答

在提供的示例中, iconUrl iconRetinaUrl 属性作为 对象值 传递:

export const pointerIcon = new L.Icon({
    iconUrl: {marker},  
    iconRetinaUrl: {marker},
    //..
})

而对于 L.icon ,它们应作为 String 值提供,这很可能是无法显示标记的原因

因此,请修改示例以将属性初始化为字符串数据:

export const pointerIcon = new L.Icon({
    iconUrl: marker,  
    iconRetinaUrl: marker,
    //..
})

或将 Url 指定为属性值,例如例如:

export const pointerIcon = new L.Icon({
    iconUrl: "https://maps.google.com/mapfiles/kml/pushpin/red-pushpin.png",  
    //..
}) 

这是一个演示

Vadim Gremyachev
2019-04-29