I am working on a website featuring Calguys Calendar. Is there a simple way to integrate CalGuys Google Maps into the calendar?
For example, I would like to post an event with a corresponding address so people can pull the map up and get their directions.
Every event would have a different address.
Thanks!
Calendar with Google map integration?
Re: Calendar with Google map integration?
This is not using CGGoogleMap but a real quick and easy way to integrate a static map into any module that uses an address.
The Google Static Map API does not require a API key to use it , here is an example:
If you place the above code into your web page you will see a map with a marker placed on the address.
to use it in your calendar template just replace the address with your calendar {$address}
refer to http://code.google.com/apis/maps/docume ... taticmaps/
The Google Static Map API does not require a API key to use it , here is an example:
Code: Select all
<img src="http://maps.google.com/maps/api/staticmap?center=720+government+street,Victoria,BC&zoom=14&size=512x512&maptype=roadmap&markers=size:mid|color:0xFFFF00|label:A|720+Government+street,Victoria,BC&sensor=false&alt="BLAH" />
to use it in your calendar template just replace the address with your calendar {$address}
refer to http://code.google.com/apis/maps/docume ... taticmaps/