寻找带回调的JS Map控件

时间:2012-11-12 19:45:42

标签: javascript jquery

我想知道是否有人知道一个好的Javascript / Query地图控件,它允许用户点击一个位置。完成此操作后,控件将使用用户刚刚选择的GPS坐标进行回调。

有没有人知道这样的控制。

我一直在寻找但尚未发现任何东西。

这是在MVC3应用程序中使用。

欢迎所有建议。

1 个答案:

答案 0 :(得分:4)

来自Google Maps API(https://developers.google.com/maps/documentation/javascript/events#EventListeners)

var map;
function initialize() 
{
    var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
    var mapOptions = 
    {
        zoom: 4,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);

    google.maps.event.addListener(map, 'click', function(event) 
    {
        placeMarker(event.latLng);
    });
}

function placeMarker(location) 
{
    var marker = new google.maps.Marker(
    {
        position: location,
        map: map
    });

    map.setCenter(location);
}

演示https://google-developers.appspot.com/maps/documentation/javascript/examples/event-arguments