ini_set("include_path",".:/home/hendry/smarty.dabase.com/Smarty-2.6.10/libs");
require('Smarty.class.php');
require('/home/hendry/smarty.dabase.com/GoogleMapAPI-1.1/GoogleMapAPI.class.php');
$smarty = new Smarty();
$map = new GoogleMapAPI();
// enter YOUR Google Map Key
$map->setAPIKey('ABQIAAAA5boVG7RnftiffEIDH8RB2hRMVnh62hgLCQbKhcST5RTcAht33xRwH5_f9f4CEMxmt6Wbu6VIrlfhMA');
// create some map markers
$map->addMarkerByAddress('621 N 48th St # 6 Lincoln NE 68502','PJ Pizza','PJ Pizza');
$map->addMarkerByAddress('826 P St Lincoln NE 68502','Old Chicago','Old Chicago');
$map->addMarkerByAddress('3457 Holdrege St Lincoln NE 68502',"Valentino's","Valentino's");
// assign Smarty variables;
$smarty->assign('google_map_header',$map->getHeaderJS());
$smarty->assign('google_map_js',$map->getMapJS());
$smarty->assign('google_map_sidebar',$map->getSidebar());
$smarty->assign('google_map',$map->getMap());
// display the template
$smarty->display('/home/hendry/smarty.dabase.com/index.tpl');
?>