Home > jGoogleStaticMaps

jGoogleStaticMaps

JGoogleStaticMaps is a project mainly written in JavaScript, based on the MIT license.

A JQuery Plugin for Google Static Maps.

= JQuery Google Static Maps Plugin

== Installing:

cd myApp/javascripts $ git clone [email protected]:guivinicius/jGoogleStaticMaps.git

== Usage:

The standard use:

$('div.#map').googleStaticMap({ center : '-23.507,-47.455', zoom : '14', size : '500x400', format : 'JPEG', maptype : 'roadmap', language : 'en', markers : '-23.507,-47.455', sensor : false });

Or:

var settings = { center : '-23.507,-47.455', zoom : '14', size : '500x400', format : 'JPEG', maptype : 'roadmap', language : 'en', markers : '-23.507,-47.455', sensor : false };

$('div.#map').googleStaticMap(settings);

Other ways:

You can add a lat and lng attribute to your html tag, and the plugin will do the job.

or you can pass a location attribute to your html tag like this:

the location attribute work with both coordinates and addresses.

IMPORTANT

In case of both attributes in the same element the plugin uses the lat and lng to work.

== TODO's:

Variables

'path' : '', NOT WORKING YET 'visible' : '', NOT WORKING YET 'style' : '', NOT WORKING YET

and the most important, multiple markers feature will be released soon! =]

See the variables documentation on Google Official Website: http://code.google.com/apis/maps/documentation/staticmaps/

== ISSUES / SUGGESTIONS

Please open a issue and tag it!

I will be happy to solve you problem or work in your idea.

== License:

MIT-LICENSE