Web アプリケーション用の領域描画ツールを作成しており、ユーザーが多角形の形状を変更するために使用できるアンカーとしてマーカーを使用しています。
これは私がこれまでに持っているものです。http://demos.nodeline.com/leaflet_development/
リポジトリはhttps://github.com/SpencerCooley/Leaflet_developmentにあります
$(document).ready(function(){
var map, cloudmade, sanAntonio, polygonPoints
map = new L.Map('map');
cloudmade = new L.TileLayer('http://{s}.tile.cloudmade.com/d4334cd6077140e3b92ccfae2b363070/997/256/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://cloudmade.com">CloudMade</a>',
maxZoom: 18
});
sanAntonio = new L.LatLng(29.4238889, -98.4933333); // geographical point (longitude and latitude)
map.setView(sanAntonio, 13).addLayer(cloudmade);
polygonPoints = [];
var polygon = new L.Polygon(polygonPoints);
map.addLayer(polygon);
map.on('click', function(e) {
var marker = new L.Marker(e.latlng, {draggable:true});
polygonPoints.push(e.latlng);
var markerId = polygonPoints.length -1
map.addLayer(marker);
polygon.setLatLngs(polygonPoints);
marker.on('drag', function(){
var locationWhileDrag = marker.getLatLng();
$('#first_marker').val(locationWhileDrag);
polygonPoints.splice(markerId,1,locationWhileDrag);
polygon.setLatLngs(polygonPoints);
});
});
});
ユーザーがストリートレベルにズームインしている場合にのみ、マーカーを通常のサイズにしたい。ズームアウトすると、通常のサイズのマーカーがポリゴンを完全に覆い隠します。ドキュメントを調べましたが、これについては何も見つかりませんでした。
私は主に提案/ブレインストーミングを探しています。現在どのズーム状態にあるかを検出する方法があるのではないかと考えています。もしそうなら、if ステートメントを使用してアイコンを変更できます。