<?php /**
* Showing multiple points with Phoogle Maps
* class developed by Justin Johnson <justinjohnson@system7designs.com>
*/
require_once 'phoogle.php';
$map = new PhoogleMap();
$map->setAPIKey("ABQIAAAAgpB_3R0-4s5dCKSMHolShxTuQ_eQa7Df_lEkWrZ6zcIJzVtabRQUinhyTyTkm9Pa6QDiPoTrp3TpNw");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<? $map->printGoogleJS(); ?>
<title>Google Maps A1</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css">
<!--
body {
background-color: #4466a5;
}
.style4 {
color: #CC0000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.style5 {
color: #333333;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
a:link {
color: #FF0000;
}
a:visited {
color: #FFFFFF;
}
-->
</style></head>
<body>
<span class="style4"><a href="index.php">< back to main page</a></span>
<table width="800">
<tr>
<td width="165" align="left" bgcolor="#509BC0"><?
$map->addAddress('3418 Cranborne Chase, Marietta, GA 30062', 'This is where I live.');
$map->showMap();
?> </td>
<td width="709" align="center" bgcolor="#509BC0"> </td>
</tr>
<tr>
<td bgcolor="#509BC0">
</td>
<td align="center" bgcolor="#509BC0" class="style5"> </td>
</tr>
</table>
</body>
</html> |