An open API service indexing awesome lists of open source software.

https://github.com/fetch/backbone.google-maps-overlay

Google Maps Overlay in Backbone.View as RequireJS module
https://github.com/fetch/backbone.google-maps-overlay

Last synced: 20 days ago
JSON representation

Google Maps Overlay in Backbone.View as RequireJS module

Awesome Lists containing this project

README

          

backbone.google-maps-overlay
============================

Google Maps Overlay in Backbone.View

### Requirements

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](https://github.com/millermedeiros/requirejs-plugins) you can define `google-maps.js` like this:

```js
define(['async!http://maps.google.com/maps/api/js?sensor=false'], function(){
return google.maps;
});
```