有没有人使用过类似require.js的Googlemaps V3,它需要在AMD版本中?有没有人在某处做过?
答案 0 :(得分:7)
在require.js中你可以使用异步插件,然后像这样调用它:
define([
'async!http://maps.google.com/maps/api/js?sensor=false'
], function(){
//Create your map.
});
答案 1 :(得分:2)
你也可以使用jQuery.Deferred()和一些全局变量(不理想,但我需要它,所以我可以使用grunt rjs优化我的文件,这对异步不起作用):
// gmapsDone.js
window._mapsLoaded = $.Deferred();
window.gmapsLoaded = function(data) {
delete window.gmapsLoaded;
_mapsLoaded.resolve();
};
define(["http://maps.google.com/maps/api/js?v=3&sensor=false&callback=gmapsLoaded"], function(gmaps) {
"use strict";
return window._mapsLoaded.done;
});
然后,使用它:
define(["gmapsDone"], function(gmapsDone) {
function load() {
// Do something
}
gmapsDone(load);
});
答案 2 :(得分:2)
我最近帮助一位朋友在上面提到的$ .Deferred方法上起飞解决了这个问题。这对优化器很有用,并且不会导致多个脚本加载。
var google_maps_loaded_def = null;
define(['jquery'],function($) {
if(!google_maps_loaded_def) {
google_maps_loaded_def = $.Deferred();
window.google_maps_loaded = function() {
google_maps_loaded_def.resolve(google.maps);
}
require(['http://maps.googleapis.com/maps/api/js?sensor=true&callback=google_maps_loaded'],function(){},function(err) {
google_maps_loaded_def.reject();
//throw err; // maybe freak out a little?
});
}
return google_maps_loaded_def.promise();
});
可作为要点: https://gist.github.com/MattSurabian/7868115
使用上述模块并利用以下事实:使用google.maps解决了承诺:
define([ 'app/lib/google-maps-loader' ], function(GoogleMapsLoader){
GoogleMapsLoader.done(function(GoogleMaps){
// your google maps code here!
var geocoder = new GoogleMaps.Geocoder();
}).fail(function(){
console.error("ERROR: Google maps library failed to load");
});
});
或者,通常只引用google.maps
对象
define([ 'app/lib/google-maps-loader' ], function(GoogleMapsLoader){
GoogleMapsLoader.done(function(){
// your google maps code here!
var geocoder = new google.maps.Geocoder();
}).fail(function(){
console.error("ERROR: Google maps library failed to load");
});
});
我在这里写了一篇关于这个方法的简短博文,可能有些用处:RequireJS Projects and Asynchronously Loading the Google Maps API
答案 3 :(得分:1)
我整理了一个Google Maps AMD loader plugin,它在异步之上添加了一些功能!加载器。
require.config({
googlemaps: {
params: {
key: 'abcd1234', // sets api key
libraries: 'geometry' // set google libraries
}
}
});
require(['googlemaps!'], function(gmaps) {
// google.maps available as gmaps
var map = new gmaps.Map('map-canvas');
});