我下载了一个我想成为我的标记图标的图像。我将此图像保存在asp.net核心项目路径中:wwwroot / images / green_icon。然后我写下面的代码
var greenIcon = L.icon({
iconUrl: '~/images/green_icon.png'
});
L.marker([41.349412, 2.151421], {
title: 'Martainer',
id: '1',
icon: greenIcon
}).addTo(mymap)
我的问题是,当我运行该应用程序时,我看到以下错误: GET http://localhost:5000/Home/~/images/green_icon.png 404(未找到)
我不知道如何更改此路径。我的图片在我的项目中。 有什么帮助吗? 谢谢