2

我正在使用 Leaflet 显示 Geojson 图层。我想更改默认标记图标大小。

这是我想出的代码:

    $.ajax({
        type: "GET",
        url: "data.json",
        dataType: 'json',
        success: function (response) {
            geojsonLayer = L.geoJson(response, {
                pointToLayer: function(featuer, latlng) {
                    var smallIcon = L.Icon.extend({
                        options: {
                            'iconSize': [10, 10]
                        }
                    });
                    var myIcon = new smallIcon();
                    return L.marker(latlng, {icon: smallIcon});
                },
                onEachFeature: onEachFeature
            }).addTo(map);
        }
    });

但是,我在加载页面时遇到了 javascript 错误:

Uncaught TypeError: Cannot read property 'popupAnchor' of undefined 

有什么线索吗?

4

1 回答 1

4

我认为当你扩展 L.Icon 类时,你必须指定 IconUrl,它是用于图标的图像文件的链接。请参阅文档: http: //leafletjs.com/reference.html#icon

由于 smallIcon 构造函数不满足所有必需的选项,因此 myIcon 将是未定义的。

试试这个:

var myIcon = L.icon({
    iconUrl: 'leaflet/images/marker-icon.png',
    iconSize: [10,10],
    iconAnchor: [22, 94],
    popupAnchor: [-3, -76],
    shadowUrl: 'leaflet/images/marker-shadow.png',
    shadowSize: [68, 95],
    shadowAnchor: [22, 94]
});

L.marker(latlng, {icon: myIcon}).addTo(map);
于 2013-04-23T17:03:50.207 回答