Non riesco a caricare gmaps api con requireJS. Questo è quello che ho provato:.Come caricare l'API di Google Maps con RequireJS?
requirejs.config({
urlArgs: "noCache=" + (new Date).getTime(),
paths : {
"jquery": "vendor/jquery-1.8.2.min",
"bootstrap": "vendor/bootstrap.min",
"underscore": "libs/underscore-min",
"backbone": "libs/backbone-min",
"template": "libs/template",
"gmaps": "http://maps.google.com/maps/api/js?v=3&sensor=false"
},
shim: {
'backbone': {
deps: ['jquery', 'underscore'],
exports: 'Backbone'
},
'underscore': {
exports: '_'
},
'bootstrap': {
deps: ['jquery']
},
'gmaps': {
deps: ['jquery']
},
'main':{
deps: ['jquery','gmaps']
}
}
});
require(["main"], function (main) {})
ma dentro main.js quando cerco di istanziare il geocoder ho ottenuto ,, indefinita non è un errore di funzione"
var geocoder = new google.maps.Geocoder();
Tutte le idee che cosa potrebbe I fare male
ci sono errori di rete? Le mappe api JS vengono effettivamente caricate? –
Non è stato caricato ... – hjuster
Questa risposta potrebbe aiutare - http://stackoverflow.com/questions/6398342/cant-initiate-the-google-maps-geocoder. Non ho una chiave API, quindi potrebbe non funzionare completamente per me. Sembra che debba essere richiesto il caricamento di Geocoder. –