google maps api 3 MouseEvent latLng

时间:2012-09-27 15:56:12

标签: javascript google-maps-api-3 geolocation mouseevent

我正在尝试使用谷歌地图作为精确定位位置的工具。我正在使用javaScript api v3。我也使用ipinfodb api进行地理定位。我遇到了一个问题,我认为这是一个API问题,但是maby我忘记了什么...... 这是我的代码的一部分:

var googleMap = null; // of type google.maps.Map
var googleApiKey = <myGoogleApiKey>;
var scriptLoaded = false;
var latLng = null; // expecting format: "lat,lng" or "(lat,lng)"
var marker = null; // of type google.maps.Marker

function setLatLong(locationStr){
    if (null != locationStr && locationStr.length>2){
        latLng = ""+locationStr;
    if (null != googleMap){
            var ll = latLng.split(","); 
            ll[0] = ll[0].replace(/\(/i,"");
            ll[1] = ll[1].replace(/\)/i,"");
            //TODO: write ll[0], and ll[1] somewhere
        }
    }
}

function loadGoogleMapsScript() {
    if (!scriptLoaded){
        var script = document.createElement("script");
        script.type = "text/javascript";
        script.src = "https://maps.googleapis.com/maps/api/js?key="+ 
                     googleApiKey+"&sensor=false&callback=initGoogleMaps";
        document.body.appendChild(script);
        scriptLoaded = true;
    }
}

function initGoogleMaps() {
var llArray = null;
if (null != latLng) llArray = latLng.split(",");
else  llArray = [0,0];

if (null == googleMap){
      var mapOptions = {
        zoom: 13,
        center: new google.maps.LatLng( (llArray && llArray.length == 2)? parseFloat(llArray[0]) : null, 
                                        (llArray && llArray.length == 2)? parseFloat(llArray[1]) : null ),
        mapTypeId: google.maps.MapTypeId.ROADMAP,
        draggable:true
      };
      googleMap = new google.maps.Map(document.getElementById("theMapId"), mapOptions);
      google.maps.event.addListener(googleMap, 'click', function(event) {
            placeMarker(event.latLng);
      setTimeout('placeMarker(googleMap.getCenter())',500);
} else{
      googleMap.setZoom(13);
      googleMap.setCenter((llArray && llArray.length == 2)? parseFloat(llArray[0]) : null, 
                          (llArray && llArray.length == 2)? parseFloat(llArray[1]) : null );
}
}

function placeMarker(location) {
    if ( !isNaN(location.lat()) && !isNaN(location.lng()) )
        setLatLong("("+location.lat()+","+location.lng()+")");
    else return null;
    if (marker){
        marker.setMap(null);
        marker.setMap(googleMap);
        marker.setPosition(location);
     } else{
        marker = new google.maps.Marker({
            position: location,
            map:googleMap,
            clickable:false,
            draggable:true
        });
        google.maps.event.addListener(marker, 'dragend', function(event) {
            placeMarker(event.latLng);
        });
    }
}

当我打开弹出窗口时,我开始调用loadGoogleMapsScript(),该窗口在作业完成时从页面中删除。 一切都很完美,但有时,地图变得疯狂。如果我不改变标记的位置,下次(在同一个会话中)我尝试打开弹出div,与地图的onclick事件相关的MouseEvent.lat()的值变为NaN,标记稍微向顶部移动地图。无法正确拖动地图。 这就是我用于删除弹出窗口的内容:

function removePopupDiv(){
    jQuery('.popup_div-area').remove();
//setTimeout("removeScriptBySrcContent('https://maps.g');removeScriptBySrcContent('.googleapis');",300);
    scriptLoaded = false;
    googleMap = null;
    marker = null;
}

正如您所看到的,我甚至尝试删除添加的脚本标记,但没有成功,有时会出现问题。 我试图解决这个问题一段时间,但没有成功。以前有人有这个问题吗?我找不到其他人抱怨这个问题。

2 个答案:

答案 0 :(得分:0)

Google开发人员有一个带有演示版的网站,他们有one可能有用。

在开发Google地图应用程序之前,您应该在继续

之前学习basics

答案 1 :(得分:0)

这是我的错误......每次设置值时,我都应该有来自任何不需要的字符的经度和纬度数据的清晰字符串。现在一切都充满了魅力。

function setLatLong(locationStr){
    if (null != locationStr && locationStr.length>2){
        latLng = ""+locationStr;
            latLng = latLng.replace(/\(/g,"");
            latLng = latLng.replace(/\)/g,"");
            latLng = latLng.replace(/ */g,"");
    }
...