独特识别传单标记

时间:2015-07-30 19:14:39

标签: javascript php mysql json leaflet

我之前已就此主题做了一些研究,但我还没有找到我特定问题的答案。我目前正在使用Leaflet.js。每个标记都有从MySQL数据库中提取的弹出文本。但是,某些数据不会显示在弹出窗口中,只与标记关联。

我想要做的是,无论何时单击特定标记,与其关联的数据都会在弹出窗口以外的位置回显(即在DIV中)。

有没有办法唯一地识别标记,以便您可以提取与其关联的数据并在其他地方回显它?

修改 这里有一些代码可以让事情变得更清晰:

以下是我的一些JS:

var json_data = <?php echo json_encode($data); ?>;

for (var i = 0; i < json_data.length; i++) {
    L.marker([json_data[i].latitude, json_data[i].longitude])
    .bindPopup(json_data[i].firstName + ' ' + json_data[i].lastName + '<br>' + '<strong>Date:</strong>' + ' ' + json_data[i].dateOccurred)
    .addTo(map);
  }

这是我的PHP:

$query = "SELECT * FROM incident, victim WHERE incident.incidentID = victim.incidentID";
//converting the data from mySQL to PHP

$data = array(); //setting up an emtpy PHP array for the data to go into

if($result = mysqli_query($db,$query)) {
  while ($row = mysqli_fetch_assoc($result))
  {
    $data[] = $row;
  }
}
?>

基本上我通过PHP提取数据,然后将其编码为JSON。

另外,谢谢你的帮助,伙计们! :)

1 个答案:

答案 0 :(得分:3)

您可以尝试向标记添加自定义属性,然后在onClick事件中获取该属性:

//Handle marker click
var onMarkerClick = function(e){
    alert("You clicked on marker with customId: " +this.options.myCustomId);   
}
//Create marker with custom attribute
var marker = L.marker([36.83711,-2.464459], {myCustomId: "abc123"});
marker.on('click', onMarkerClick);

Example on JSFiddle