自从我开始制作我的应用程序以来,控制台、Chrome 中一直有消息,
Uncaught TypeError: Cannot read property 'Fa' of undefined
但是看到我的应用程序加载正常,我可以在屏幕上、Chrome 和 Firefox 中看到所有内容,我只是忽略了它。我知道它与我的 Google 地图有关,因为当我在 Chrome 中调试更多详细信息时,我可以找到:
Uncaught TypeError: Cannot read property 'Fa' of undefined
b.b
ag.(anonymous function).Y %7Bmain,places%7D.js:26
tJ.(anonymous function).Yc
(anonymous function)
(anonymous function) %7Bmain,places%7D.js:10
uJ
a.b
ag.(anonymous function).Y %7Bmain,places%7D.js:26
(anonymous function)
并且 %7Bmain 链接转到https://maps.gstatic.com/cat_js/intl/en_us/mapfiles/api-3/13/6/%7Bmain,places%7D.js,这是谷歌的东西。
但是昨天我在 IE 中尝试了我的应用程序,它出现了同样的错误 - 地图无法加载。知道可能出了什么问题以及如何解决吗?
这是我的功能:
function initialize_google_maps() {
var user_longitude = $("#user-position").attr("data-lng");
var user_latitude = $("#user-position").attr("data-lat");
var currentlatlng =
new google.maps.LatLng(user_latitude, user_longitude);
var zoom = 10;
var myOptions = {
zoom: zoom,
center: currentlatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: false,
minZoom: 1,
// don't want people to be able to hone in
// on others' addresses too specifically.
maxZoom: 13
};
var map = new google.maps.Map(
document.getElementById("map_canvas"),
myOptions
);
var marker = new google.maps.Marker({
map: map,
position: currentlatlng,
icon: { opacity: 0 }
});
var circle = new google.maps.Circle({
map: map,
fillOpacity: 0,
strokeWeight: 2,
strokeOpacity: 0.7,
radius: 10000,
});
circle.bindTo('center', marker, 'position');
}
我这样称呼它:
<!-- draw the map, on the right of the screen -->
<div id="map_canvas">
<script>
$(function() {
// this function can be found in draw_map.js
initialize_google_maps();
});
</script>
</div>
我在这里看到了一个 stackoverflow 问题,看起来很相似,它说确保在呈现页面之前加载了 javascript,所以我尝试像这样调用我的函数:
<script>
$(document).on("ready", function(){
// this function can be found in draw_map.js
initialize_google_maps();
});
但仍然得到同样的错误。
我打电话的谷歌地图库:
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true&libraries=places"></script>