https://github.com/mjc-gh/jquery.map.js
jQuery Google Map v3 API Wrapper
https://github.com/mjc-gh/jquery.map.js
Last synced: about 1 month ago
JSON representation
jQuery Google Map v3 API Wrapper
- Host: GitHub
- URL: https://github.com/mjc-gh/jquery.map.js
- Owner: mjc-gh
- Created: 2011-01-10T20:46:13.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-04-13T16:03:18.000Z (over 13 years ago)
- Last Synced: 2025-08-25T09:38:57.707Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
jQuery.map.js v2
=============Overview
--------This is a simple jQuery Google Maps API v3 wrapper. It provides map initialization as well as the methods to add a set of markers, center and zoom the map. You can also access the Google "map object" directly for more advanced usage.
[See Google's doc for more details](http://code.google.com/apis/maps/documentation/javascript/basics.html)
Please see the demo.html file for demos and code examples. If you would like to see a feature or find a bug submit an issue.
_This plugin is used on [MyLatLng.com](http://mylatlng.com)._
Position Notes
--------------Any method that takes a positional option can either be a google.maps.LatLng object, an Array or an Object
// array
var position = [12.34, 56.78];
// object
var position = {lat:12.34, lng:56.78}This means you don't have to create new google.maps.LatLng and can just pass objects or array to the various methods.
Documentation
-------------This plugin had a complete rewrite in 2/12 and docs need to be written. Refer to the demo page for the time being.