gpt4 book ai didi

javascript - 传单 - 标记未显示

转载 作者:行者123 更新时间:2023-11-30 09:32:28 25 4
gpt4 key购买 nike

我是传单的新手,在美国 map 上放置标记时遇到问题。下面是我的 JSON 文件的片段:

[
{
"site_name": "Chemical & Minerals Reclamation",
"city": "Cleveland",
"epa_id": "OHD980614549",
"npl": "Deleted",
"monitored": "No",
"type_of_company": "Waste Disposal",
"human_exposure": "Under Control",
"groundwater_status": "Not a Groundwater Site",
"lat": 41.49036,
"long": -81.72503,
"icon": "img/deleted.png"
},
{
"site_name": "Krysowaty Farm",
"city": "Hillborough Township",
"epa_id": "NJD980529838",
"npl": "Deleted",
"monitored": "No",
"type_of_company": "Waste Disposal",
"human_exposure": "Under Control",
"groundwater_status": "Under Control",
"lat": 40.50028,
"long": -74.78,
"icon": "img/deleted.png"
},
{
"site_name": "Enterprise Avenue",
"city": "Philadelphia",
"epa_id": "PAD980552913",
"npl": "Deleted",
"monitored": "Yes",
"type_of_company": "Waste Disposal",
"human_exposure": "Under Control",
"groundwater_status": "Under Control",
"lat": 39.885,
"long": -75.2125,
"icon": "img/deleted.png"
}
]

我的 JS 文件:

function industrialDumping() {

// create variable named map, set viewpoint and default zoom level
var map = L.map('map').setView([37.8, -96], 4);

L.tileLayer('https://api.mapbox.com/styles/v1/mapbox/light-v9/tiles/256/{z}/{x}/{y}?access_token=pk.eyJ1Ijoic3VicmFtaCIsImEiOiJjajV1NTk4dG4wM2V0MzJub2VoemV5YWVwIn0.4dweARrZX3iEWtXVjkp75w', {
maxZoom: 16,
id: 'mapbox.light'
}).addTo(map);

// add a minimal zoom to prevent users from zooming out too far
map._layersMinZoom=5;

// // load json file
$(document).ready(function(){
$.ajax({
type: "GET",
url: "data/sfdataviz.json",
dataType: "json",
mimeType: "application/json",
success: function(data) {processData(data);}
});
});

function processData(allText) {

for (var i in allText) {
data = allText[i];
var customicon = L.icon({
iconUrl: data.icon,
iconSize: [15, 15],
iconAnchor: [20, 40],
popupAnchor: [0, -60]
});
console.log(customicon);
// add the marker to the map
L.marker([data.long, data.lat], {icon: customicon})
.addTo(map)
.bindPopup("Site name: <strong>" + data.site_name + "</strong><br />Type of Company: <strong>" + data.type_of_company + "</strong><br>Location: <strong>" + data.city + "</strong><br />Monitored: <strong>" + data.monitored + "</strong><br>Human exposure: <strong>" + data.human_exposure + "</strong><br />Groundwater Status: <strong>" + data.groundwater_status + "</strong>")
}
}
}

我的 HTML 文件:

<!DOCTYPE html>
<html>
<head>
<title>Industrial Dumping</title>
<meta charset="utf-8">
<link href="//fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="js/leaflet.js"></script>
<link rel="stylesheet" type="text/css" href="css/leaflet.css">

<!-- additional css and js -->
<style type="text/css">


#map {
height: 650px;
}
.leaflet-popup-content {
/* change size of margin */
margin: 14px 14px;
/* make the line height smaller */
line-height: 1.4;
}

/*.leaflet-map-pane {
z-index: 100;
}*/
/* change color when the cursor hovers over the popup close button */
.leaflet-container a.leaflet-popup-close-button:hover {
color: #9d132a;
}

/* change color of an unvisited link and the zoom symbols */
a:link {
color: #9d132a;
}

/* change color of a visited link */
a:visited {
color: #84b819;
}

/* change color when the cursor hovers over a link */
a:hover {
color: #e11b3c;
}
<script type="text/javascript" src="js/industrial-dumping.js"></script>
</head>
<body onload="industrialDumping()">
<div id="map"></div>
</body>
</html>

map 上没有显示任何标记。 Chrome 或 FF 中的开发人员控制台显示没有 JS 错误。似乎正在读取我的 JSON 文件,没有任何问题,只是标记没有显示在 map 上。我看过这里建议的其他解决方案,但似乎都不适合我。提前致谢。

最佳答案

您的标记显示,但不在您期望的位置。

在 Leaflet 中,坐标顺序是 [lat, lng],而在您的代码中您已设置:

L.marker([data.long, data.lat])

现场演示:https://plnkr.co/edit/UC6io0jPh9HJVoDAgJS1?p=preview

关于javascript - 传单 - 标记未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45471211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com