Leaflet API와 함께 OSM을 사용하고 있습니다. 이제 클릭 한 위치의 위도와 길이를 얻고 싶습니다. 나는 이것과 비슷한 것을 의미했습니다. 전의: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 의이 코드는 위도, 긴 값을 얻는 데 도움이됩니다 ... 리플릿을 사용하여 비슷한 것을 찾으십시오 ...