我正在使用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
任何线索?
答案 0 :(得分:3)
我认为当你扩展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);