Google helper provides the functionality from google.
Google chart api is very useful for making chart in your site.
$FE->loadHelper("google"));
$chartImage=$FE->Google->chart(array("chs"=>"","chd"=>,,);
You need to set the key value for using google map,if you have a look at the document of google map api, you will understand.
FE->Google->setMapKey(MAPS_API_KEY);
You can get the google map.
FE->Google->mapScript(MAPS_API_KEY);
FE->Google->mapInit($canvas,$latitude,$longitude,$zoom);
FE->Google->mapMaker($canvas,$latitude,$longitude,$zoom);
You can get the google map as static image.
$array=array(
center=>"40.714728,-73.998672",
zoom=>12,
size=>"400x400",
maptype=>"mobile",
key=MAPS_API_KEY,
// you can set in the
sensor=true, //_or_false
);
<img src="<?php echo $FE->Google->mapImage($array);?>">