我正在根据此处的文档在传单中加载自定义标记:
http://leafletjs.com/examples/custom-icons.html
我的具体语法是:
var imagepath = "/public/marker.svg";
myIcon = L.icon({
iconUrl: imagepath,
});
newMarker = L.marker([41.7998, -87.5949], {
icon: myIcon,
}).addTo(map);
这实际上很好用。标记呈现为我所期望的。问题是,短暂的标记图标会渲染丢失的图像图标[?](可能是在加载时)。有没有办法在SVG加载时抑制丢失的图像图标的渲染?我使用的是Firefox 30.0和Leaflet 0.7.3。