0

我在我的一个页面的 jQuery 插件中调用谷歌地图,但它没有在选项卡 div 中加载整个地图。我猜解决方案是 Ajax。我已经按照谷歌的说法进行了尝试,但它似乎不起作用。

提前谢谢了...

function initializeMap(address) {

 var mapVar = {
    latitude: "",
    longitude: "",
    myLatlng: ""
 };

var geocoder = new google.maps.Geocoder();

geocoder.geocode({ 'address': address }, function (results, status) {

    if (status == google.maps.GeocoderStatus.OK) {

        mapVar.latitude = results[0].geometry.location.lat();
        mapVar.longitude = results[0].geometry.location.lng();

        mapVar.myLatlng = new google.maps.LatLng(mapVar.latitude, mapVar.longitude);

        //-----define map options---//
        var mapOptions = {
            center: mapVar.myLatlng,
            zoom: 15,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

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

        var marker = new google.maps.Marker({
            position: mapVar.myLatlng,
            map: map,
            title: address
        });

    } //end if 
   });
}

html

   <div id="map_canvas" style="width:61.4em; height:400px;"></div>

css

 #map_canvas { 
 width:61.4em;
 height: 100%;
}
4

1 回答 1

1

我发现这个问题的解决方案是在页面完成加载后通过注入脚本标签来响应 window.onload 事件/函数调用,按需异步加载地图。因为我的地图显示在 jquery 选项卡中,所以我在选项卡中注册了事件。因此,当单击特定选项卡时...在插件中调用 document.ready 中的 map-Load 函数,然后初始化保存实际地图请求数据的函数。

jQuery插件

  $.fn.loadGoogleMap = function () {

    var script_tag = document.createElement('script');

    script_tag.type = 'text/javascript';

    script_tag.src = "https://maps.googleapis.com/maps/api/js?key=yourKey=false&callback=initializeMap"

    document.body.appendChild(script_tag);

}


function initializeMap() {

address = PropertyDetail.d_fullAddress;

var mapVar = {
    latitude: "",
    longitude: "",
    myLatlng: ""
};

var geocoder = new google.maps.Geocoder();

geocoder.geocode({ 'address': address }, function (results, status) {

    if (status == google.maps.GeocoderStatus.OK) {

        mapVar.latitude = results[0].geometry.location.lat();
        mapVar.longitude = results[0].geometry.location.lng();

        mapVar.myLatlng = new google.maps.LatLng(mapVar.latitude, mapVar.longitude);

        //-----define map options---//
        var mapOptions = {
            center: mapVar.myLatlng,
            zoom: 15,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

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

        var marker = new google.maps.Marker({
            position: mapVar.myLatlng,
            map: map,
            title: address
        });

    } //end if 
  });
 }

在 document.ready() 中调用插件函数...

 $("#map_canvas_tab").on("click", function () {

      $(this).loadGoogleMap();

      window.onload = loadScript;
  });
于 2013-06-24T15:32:25.353 回答