전단지를 처음 사용하고 사용자 정의 마커가있는 외부 geoJSON 피드의 스타일을 지정하려고합니다.외부 GeoJSON 레이어의 전단지 사용자 정의 마커
아래 코드에서 UOSensorsLayer에 추가하는 데 문제가 있습니다. 내 구현에 관해서는 공식 문서가 너무 명확하지 않습니다. 기본 전단지 파란색 마커를 사용하여 마커 만 표시 할 수 있습니다. 내 경우 다 나를 위해 완벽하게 작동 한 어떤
<html>
<head>
<title>Leaflet Map GeoJSON with Click Feature</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script>
<style>
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id='map'></div>
<script>
var UOSensors = $.ajax({
url:"http://uoweb1.ncl.ac.uk/api/v1/sensors.geojson?api_key=j5wze84qf82y23luzkboejai2tqcdiqtpmu5swbq46r6s1cqtc86zhkctkbxf6chx8lqrxficjqt00kvwioukj81av",
dataType: "json",
success: console.log("Urban Observatory Sensor data successfully loaded."),
error: function (xhr) {
alert(xhr.statusText)
}
})
// Specify that this code should run once the data request is complete
$.when(UOSensors).done(function() {
var map = L.map('map');
cartodbAttribution = 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.com">Mapbox</a>';
L.tileLayer('https://api.mapbox.com/styles/v1/mapbox/streets-v10/tiles/256/{z}/{x}/{y}@2x?access_token=pk.eyJ1IjoiYW5keXByb2N0b3IiLCJhIjoiY2o2amZqODVyMTdoMzJxcWJlbnpzaHJqMiJ9.tFlpAR14eZXbEzpDx03c5Q', {
attribution: cartodbAttribution
}).addTo(map);
var myIcon = L.icon({
iconUrl: 'rain-marker.png',
iconSize: [32, 37],
iconAnchor: [16, 37],
popupAnchor: [0, -28]
});
function WeatherFilter(feature, layer) {
if(feature.properties.type === "Weather") return true;
}
var UOSensorsLayer = L.geoJSON(UOSensors.responseJSON, {filter: WeatherFilter})
.eachLayer(function (layer) {
layer.bindPopup(layer.feature.properties.name);
}).addTo(map);
map.setView({ lat: 54.96, lng: -1.61 }, 12);
});
</script>
</body>
</html>
문제는 무엇입니까? 오류가 있습니까? – Carcigenicate
기본 전단지 파란색 마커를 사용하여 마커 만 표시 할 수 있습니다. –