Example #1
0
// setup the visual design of the control
$api->setWidth(800);
$api->setHeight(600);
$api->setZoomFactor(6);
$api->addControl(GSmallMapControl);
// define points
$points = array(array(50, 10, 'Point1'), array(51, 15, 'Point2'));
// add a point.
for ($i = 0; $i < count($points); $i++) {
    $api->addGeoPoint($points[$i][0], $points[$i][1], $points[$i][2], true);
}
//define addresses
$addresses = array(array('Stuttgart, Germany', 'Stuttgart'), array('Munich, Germany', 'Munich'));
// add the addresses
for ($i = 0; $i < count($addresses); $i++) {
    $api->addAddress($addresses[$i][0], $addresses[$i][1], true);
}
?>
<head>

<?php 
echo $api->getHeadCode();
?>

</head>

<body onLoad="<?php 
echo $api->getOnLoadCode();
?>
">
Example #2
0
<html>
<?php 
require "nxgooglemapsapi.php";
$api = new NXGoogleMapsAPI();
// setup the visual design of the control
$api->setWidth(800);
$api->setHeight(600);
$api->setZoomFactor(16);
$api->addControl(GLargeMapControl);
$api->addControl(GMapTypeControl);
$api->addControl(GOverviewMapControl);
// add an address. the address is geocoded in the webbrowser, not by the server!
$api->addAddress("10 market st, san francisco", "Market St<br>This is the info for this point", true);
$api->addAddress("10 california st, san francisco", "California St<br>This is the info for this point", false);
?>
<head>

<?php 
echo $api->getHeadCode();
?>

</head>

<body onLoad="<?php 
echo $api->getOnLoadCode();
?>
">

<h1> Adding Addresses to the map </h1>

<?php