The google_map tag can be used to easily create a Google map on a web page.
<cms:google_map name='my_map' address='1600 Amphitheatre Parkway, Mountain View, CA' />
<cms:google_map name='my_map' latitude='37.423021' longitude='-122.083739' />
Please see Core Concepts - Google Maps for a discussion on this tag.
We can have only one Google map on a page.
In addition to the parameters listed below, any arbitrary parameter given to this tag will be passed on unchanged to the DIV that holds the generated map.
Name of the map. This parameter is mandatory.
If skipped, is set to the name.
A map can be generated by providing either an address of both longitude and latitude.
Coordinates used to create the map.
Default is 14
Text shown in the marker baloon.
Width of the map in pixels. Default value is 400.
Height of the map in pixels. Default value is 300.
Regular CSS styles.
A full example -
<cms:google_map name='my_office' latitude='37.423021' longitude='-122.083739' zoom='14' message='We are located here' width='640' height='480' style='margin-bottom:10px;' />
It is a self closing tag and sets no variables of its own.