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
- Host: GitHub
- URL: https://github.com/fetch/backbone.google-maps-overlay
- Owner: fetch
- License: mit
- Created: 2014-07-25T10:34:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-25T12:04:09.000Z (over 11 years ago)
- Last Synced: 2024-12-31T21:42:23.561Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
});
```