我很难完成一个项目,因为无法根据通过JSON根据单击的标记获得的数据更改侧边栏中的信息。我的代码是:
基本JSON:
paradas = {
"type" : "FeatureCollection",
"name" : "paradas",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features" : [
{
"type" : "Feature",
"properties" : {
"nome" : "Parada 1",
"imagem" : "<img src='1.jpg' alt='maptime logo gif' width='350px'/>",
"descricao" : "Test."
},
"geometry" : {
"type" : "Point",
"coordinates" : [
-38.55222702026367,
-3.7864725817550275
]
}
},
(... repeat json)
我的侧边栏HTML:
<div class="sidebar">
<div class="nome"></div>
<div class="imagem"></div>
<div class="descricao"></div>
</div>
我的JS:
var rotas = L.geoJSON(paradas, {
}).addTo(map);
使用它,我可以显示标记,但当我单击任何一个并更改侧边栏的信息时,我无法继续。我知道的逻辑,但由于缺乏知识,我无法实现:(
我为基本的怀疑感到抱歉,但这次你能帮我吗?谢谢!!