Embedded Google Map
$tools = get::helper('tools');
echo $tools->googleMap('12140 SE Fairview Rd, Dayton, OR 97114');
Advanced Embedded Google Map with Markers
$tools = get::helper('tools');
$infoAt41st = 'Vork was here<br /><br />' . $html->link('http://www.vork.us')
. '<img src="http://www.vork.us/images/smiley.png" />';
$markers = array('118 E. 41 St.' => array('icon' => 'http://www.vork.us/favicon.gif', 'info' => $infoAt41st),
'353 Lexington Ave.' => array('icon' => 'http://www.vork.us/favicon.gif', 'info' =>'Nice corner'));
$mapArgs = array('markers' => $markers, 'width' => 950, 'height' => 400, 'zoom' => 17,
'marker' => array('icon' => 'http://www.vork.us/images/down.png', 'info' =>'Sun Microsystems'));
echo $tools->googleMap('101 park ave', $mapArgs);
Generate a Google Map Link
$tools = get::helper('tools');
echo $tools->googleMapLink('767 5th Ave. New York, NY 10022', 'Apple Store');