我尝试连接 RequireJS 和谷歌地图。我有这个代码
require(['gmapapi'], function(google){
var map;
var mapOptions = {
zoom: 8,
center: new google.LatLng(-34.397, 150.644),
mapTypeId: google.MapTypeId.ROADMAP
};
map = new google.Map(document.getElementById('map'),
{});
});
在需要配置中gmapapi: '//maps.googleapis.com/maps/api/js?sensor=false',
但我收到错误Cannot read property 'LatLng' of undefined
如何访问此对象?