我目前正在使用谷歌地图开发骨干单页应用程序,并且存在一个我无法理解的范围问题。 基本上所有脚本都包含在正确的顺序中,但似乎我无法在函数外部的全局对象属性中实现外部的谷歌地图对象。 这是我的观点宣言的工作前:
Viewer.Views.PhotosMap = Backbone.View.extend({
el: $('#conteneurLoad'),
markersOld: {},
mapOptions: function() {
return {
center: new google.maps.LatLng(35.3152208011549, -70.40635300000008),
};
},...
失败者:
Viewer.Views.PhotosMap = Backbone.View.extend({
el: $('#conteneurLoad'),
markersOld: {},
mapOptions: {
center: new google.maps.LatLng(35.3152208011549, -70.40635300000008),
},...
我在第二种情况下得到谷歌未定义。 任何明确的解释都会有很大帮助 感谢
答案 0 :(得分:0)