0

我想将标记拖到任何可能的地方(海洋,山脉......),但是当我尝试时,它会不断将标记移动到最近的街道。

我的代码:

google.maps.event.addListener(marker, "dragend", function(event){
                    mkpoint = marker.getPosition();
                    map.panTo(mkpoint);
                    geocodePosition(mkpoint);
                });

功能地理编码位置(位置){

    geocoder = new google.maps.Geocoder();
    geocoder.geocode( { latLng: pos}, function(results, status){
        if (status == google.maps.GeocoderStatus.OK && results.length) {
            if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {               

                map = new google.maps.Map(document.getElementById("map"), myOptions);
                direccion = results[0];
                point = new google.maps.LatLng(direccion.geometry.location.lat(),direccion.geometry.location.lng());
                map.setCenter(point);

                marker = new google.maps.Marker({
                    position: point,
                    map: map,
                    draggable:true,                 
                    title: "Prueba"
                });

(* geocoder, map, point, direccion, mkpoint 和 marker 都是全局变量)

我不知道是否缺少某些东西,或者我做错了什么。任何帮助将不胜感激。

提前致谢!

4

0 回答 0