Google Maps Overlay in Backbone.View as RequireJS module
Google Maps Overlay in Backbone.View
When using with RequireJS you have to make sure you have a module named google-maps which returns the google.maps variable.
For example, with the async plugin you can define google-maps.js like this:
define(['async!http://maps.google.com/maps/api/js?sensor=false'], function(){
return google.maps;
});