OSMとLeaflet APIを使用しています。クリックした場所の緯度と経度を取得したい。これに似たものを意味しました。例:http://openlayers.org/dev/examples/click.html
map.events.register("click", map, function(e) {
var position = map.getLonLatFromPixel(e.xy);
alert("Lat, Lon : "+position.lon.toFixed(3),position.lat.toFixed(3));
});
OpenLayersのこのコードは、lat、long値を取得するのに役立ちます... Leafletを使用して同様のものを探します...