我在我的一个jQuery插件中为我的一个页面调用谷歌地图,但它没有在tab 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
});
}
<div id="map_canvas" style="width:61.4em; height:400px;"></div>
#map_canvas {
width:61.4em;
height: 100%;
}
答案 0 :(得分:0)
我发现这个问题的解决方案是加载映射页面完成加载后异步按需注入脚本标记以响应window.onload事件/函数调用。因为我的地图显示在jquery Tab中所以我有tab的事件注册。因此,当单击特定选项卡时...在插件中调用document.ready中的map-Load函数,然后初始化保存实际地图请求数据的函数。
$.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;
});