私は、さまざまなマイニングサイトの周りのバッファゾーンを示すリーフレットマップにポップアップウィンドウを追加しようとしています。私がバッファーゾーンポリゴンをクリックすると、私は鉱山の名前情報を取得したいと思います。ここに私のコードは、リーフレットマップのポリゴンにポップアップ情報ウィンドウを追加するのに役立つ必要があります
<html>
<head>
<title>Buffer Zones around Mine</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css"/>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<style>
#map{ height: 100% }
</style>
</head>
<body>
<div id="map"></div>
<script>
var map = L.map('map').setView([45, -95], 4); //center map view
var CartoDB_Positron = L.tileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> © <a href="http://cartodb.com/attributions">CartoDB</a>',
subdomains: 'abcd',
maxZoom: 19
}).addTo(map);
// load JSON data
$.getJSON("BufferPolygons.json",function(data){
// add GeoJSON layer to the map once the file is loaded
L.geoJson(data).addTo(map);
});
//get popup info
var myLayer = L.geoJson(polygon, {
onEachFeature: yourOnEachFeatureFunction
}).addTo(map);
function yourOnEachFeatureFunction(feature, layer){
if (feature.properties.mine_name) {
layer.bindPopup(feature.properties.mine_name);
}
}
</script>
</body>
</html>
私はリーフレットとJavascriptの新機能です、どんな助けも大歓迎です!
編集:ポリゴンと非ポリゴンをスクロールするとカーソルが変わるので、マウスクリックで情報が取得されていると思います。何も表示されていないので、私はこれがHTML/CSSの問題であると仮定しています。おそらく、この情報が入るためのウィンドウを作成していないのでしょうか?