1
我想使用自定義標記與Grafana世界地圖插件使用Leaflet JS庫。但即使我把自定義標記圖像中的源目錄我不斷收到以下錯誤 -HTTP 404資源未找到 - 格拉法納世界地圖插件自定義標記
http://localhost:3000/datacenter.png 404 (Not Found)
我的代碼看起來是這樣的 -
var dataCenterIcon = window.L.icon({
iconUrl: 'datacenter.png',
iconSize: [38, 95], // size of the icon
iconAnchor: [22, 94], // point of the icon which will correspond to marker's location
popupAnchor: [-3, -76] // point from which the popup should open relative to the iconAnchor
});
window.L.marker([caponeDCLat, caponeDCLong], {icon: dataCenterIcon}).addTo(this.map);
任何人都可以提供一些投入,以什麼我可能在這裏做錯了。
謝謝...那個....工作 –