我是Leaflet JS的新手。我试图想办法改变Leaflet Realtime插件中使用的L.Geojson标记的默认样式。 我不知道要改变什么属性,以便我可以改变标记的样式。
到目前为止,这是我的代码:
var map = L.map('map', {center: [46.4337, 23.4532], zoom: 8}),
realtime = L.realtime({
url: 'get_points.php',
crossOrigin: true,
type: 'json'
}, {
interval: 500
}).addTo(map);
var osm = new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');
map.addLayer(osm);
function update(e) {
realtime.update(JSON.parse(e.data));
}
function remove(e) {
realtime.remove(JSON.parse(e.data));
}
realtime.on('update', function(e) {
popupContent = function(fId) {
var feature = e.features[fId],
my_number = feature.properties.number;
mystatus = feature.properties.mystatus;
return ('My number is: '+ my_number + '<br />' + 'Status: ' + mystatus) ;
},
bindFeaturePopup = function(fId) {
realtime.getLayer(fId).bindPopup(popupContent(fId));
},
updateFeaturePopup = function(fId) {
realtime.getLayer(fId).getPopup().setContent(popupContent(fId));
};
Object.keys(e.enter).forEach(bindFeaturePopup);
Object.keys(e.update).forEach(updateFeaturePopup);
});
我尝试使用自定义图标标记设置pointToLayer功能,但这不起作用。
感谢。
答案 0 :(得分:2)
pointToLayer
功能正常工作,就像您可以使用L.GeoJSON
的其他选项一样:
基本上你可以用L.ReoJSON和L.Realtime做任何事情 - 造型,onEachFeature,越界等等。
如果您在选项对象中使用pointToLayer
方法(我猜测您曾尝试在源对象中使用它或犯了错误),则可以返回L.Marker
自定义L.Icon
:
var realtime = L.realtime({
url: 'https://wanderdrone.appspot.com/',
crossOrigin: true,
type: 'json'
}, {
interval: 3 * 1000,
pointToLayer: function (feature, latlng) {
return L.marker(latlng, {
'icon': L.icon({
iconUrl: '//leafletjs.com/docs/images/leaf-green.png',
shadowUrl: '//leafletjs.com/docs/images/leaf-shadow.png',
iconSize: [38, 95], // size of the icon
shadowSize: [50, 64], // size of the shadow
iconAnchor: [22, 94], // point of the icon which will correspond to marker's location
shadowAnchor: [4, 62], // the same for the shadow
popupAnchor: [-3, -76] // point from which the popup should open relative to the iconAnchor
})
});
}
}).addTo(map);
以下是关于Plunker的工作示例:http://plnkr.co/edit/NmtcUa?p=preview
教程:http://leafletjs.com/examples/custom-icons.html
pointToLayer
参考:http://leafletjs.com/reference.html#geojson-pointtolayer
答案 1 :(得分:0)
使用插件页面上给出的示例,我已经设法使用pointToLayer设置标记的样式。您只需在括号内添加包含interval选项的函数。
var realtime = L.realtime({
url: 'https://wanderdrone.appspot.com/',
crossOrigin: true,
type: 'json'
}, {
interval: 3 * 1000,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions)
}
}).addTo(map);
这是JSFiddle上的一个工作示例: http://jsfiddle.net/4usvq7ky/