根据使用 Leaflet 单击的标记更改侧边栏上的信息

Elt*_*tos 3 javascript json onclick geojson leaflet

我很难完成一个项目,因为无法根据通过 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)
Run Code Online (Sandbox Code Playgroud)

我的侧边栏 html:

<div class="sidebar">
            <div class="nome"></div>
            <div class="imagem"></div>
            <div class="descricao"></div>
    </div>
Run Code Online (Sandbox Code Playgroud)

我的JS:

var rotas = L.geoJSON(paradas, {

}).addTo(map);
Run Code Online (Sandbox Code Playgroud)

有了它,我可以显示标记,但当我单击任何标记并更改侧边栏的信息时,我无法继续。我知道逻辑,但由于缺乏知识,我无法实施:(我很抱歉有基本的疑问,但这一次你能帮我吗?谢谢!!

d32*_*223 6

您应该添加处理 onEachFeature click 的函数。假设您正在使用 jquery (最简单的解决方案):

var rotas = L.geoJSON(paradas, {
  onEachFeature: onEachFeature
}).addTo(map);

function onEachFeature(feature, layer) {
  layer.on('click', function(e) {
    $(".nome").html(feature.properties.nome);
    $(".imagem").html(feature.properties.imagem);
    $(".descricao").html(feature.properties.descricao);
  });
}
Run Code Online (Sandbox Code Playgroud)

Codepen 上的工作示例https ://codepen.io/dagmara223/pen/BVBGKG