*/ require_once 'phoogle.php'; $map = new PhoogleMap(); $map->setAPIKey("ABQIAAAA0ksKqHM3yT_xmOPe0DANGRRMlCWGe88WcLmN582t1mFB9gpW6hTvRlzTS-LCJ8nFoD2AGi5vq0X-Yg"); ?>
$map->printGoogleJS(); ?> //customization options are here $map->zoomLevel = 0; //zoom in as far as we can $map->setWidth(480); //pixels $map->setHeight(540); //pixels $map->controlType = 'large'; //show large controls on the side $map->showType = false; //hide the map | sat | hybrid buttons //CUSTOM INFO WINDOW DATA $map->addAddress('208 Dingler Ave, Mooresville, NC 28115',"This is a bold address"); $map->addAddress('210 Doster Ave, Mooresville, NC 28115',"This is another address that is italic"); $map->addAddress('300 Dingler Ave, Mooresville, NC 28115'); $map->addAddress('123 DoesNotExist, Mooresville, NC 28115'); $map->addAddress('345 DoesNotExist, Charlotte, NC 28202'); $map->showMap(); ?>