Login   Register  
PHP Classes
elePHPant
Icontem

File: SampleGmaps.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mitchelle Pascual  >  Easy Google Map  >  SampleGmaps.php  >  Download  
File: SampleGmaps.php
Role: Example script
Content type: text/plain
Description: Sample of Usage
Class: Easy Google Map
Display world locations using Google maps
Author: By
Last change:
Date: 2007-03-26 14:30
Size: 699 bytes
 

Contents

Class file image Download
<?php
require'EasyGoogleMap.class.php';
$gm = & new EasyGoogleMap("ABQIAAAAoM-kEW8yHxWwveOZAouVXhTkQdzC1XuexHlQDsWmu58XcfHJ8xQB-xtA9nt_7NDWTsfJfHHxosdNZg");
$gm->SetMarkerIconStyle('STAR');
$gm->SetMapZoom(10);
$gm->SetAddress("10 market st, san francisco");
$gm->SetInfoWindowText("This is the address # 1.");

$gm->SetAddress("Manila, Philippines");
$gm->SetInfoWindowText("This is Philippine Country.");
$gm->SetSideClick('Philippines');
?>
<html>
<head>
<title>EasyGoogleMap</title>
<?php echo $gm->GmapsKey(); ?>
</head>
<body>
<?php echo $gm->MapHolder(); ?>
<?php 
echo $gm->InitJs(); ?>
<?php 
echo $gm->GetSideClick(); ?>
<?php 
echo $gm->UnloadMap(); ?>
</body>
</html>