我正在使用传单控制搜索来搜索标记。http://labs.easyblog.it/maps/leaflet-search/examples/outside.html 标记像这样存储在json中
[{"loc":["lat","lng"],"title":"black","region":"West-Kilimajaro"}]
在上面的脚本中,它只显示 1 个值:屏幕截图
我想显示 2(两个)值“标题”和“颜色”;
我正在使用传单控制搜索来搜索标记。http://labs.easyblog.it/maps/leaflet-search/examples/outside.html 标记像这样存储在json中
[{"loc":["lat","lng"],"title":"black","region":"West-Kilimajaro"}]
在上面的脚本中,它只显示 1 个值:屏幕截图
我想显示 2(两个)值“标题”和“颜色”;
来自Project's Github example html上项目 github repo 上 的示例
////////////populate map with markers from sample data
for(i in data) {
var title = data[i].title, //value searched
loc = data[i].loc, //position found
marker = new L.Marker(new L.latLng(loc), {title: title} );//se property searched
marker.bindPopup('title: '+ title );
markersLayer.addLayer(marker);
}
要向标记添加额外值,请使用额外字段更新此行
marker.bindPopup('title: '+ title + ' color:' data[i].color);
我终于找到了解决方案第二个属性假设添加如下
for(i in data) {
var title = data[i].title,region=data[i].region,
loc = data[i].loc,
marker = new L.Marker(new L.latLng(loc), {title: title,region:region} );
marker.bindPopup('title: '+ title );
markersLayer.addLayer(marker);}
存储在 json 中的标记应该如下所示
{"loc":[-3.3869, 36.6830], "title": "aquamarinee", "region": "West-Kilimanaro"}