我试图从网站上的表格中获取数据/坐标,然后在传单Map上显示该坐标的标记,但似乎我遇到了一些错误,因为它不工作,我遇到了以下错误:
目前,我有一个for循环,它会为Map上的每个坐标做标记:
function getInputValue() {
var inputVal1 = document.getElementsByClassName("coord");//class name of coordinates, see picture below
var inputVal = inputVal1.replace(/\s/g, ',');//format coordinates a little bit, also i tried to put toString() here, but no luck
inputValArr = JSON.parse(inputVal);
var visualmarker;
for (let i = 0; i < inputVal.length; i++) {
visualmarker = L.marker([inputVal[i]], iconOptionsfire);
visualmarker.addTo(map);
}
}
HTML格式坐标表之一的图片:
非常感谢,如果你需要更多信息,我在这里
1条答案
按热度按时间ybzsozfc1#
尝试替换代码