1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <?php require('GoogleMapAPIv3.class.php');
$gmap = new GoogleMapAPI();
$gmap->setEnableWindowZoom(true);
$gmap->setEnableAutomaticCenterZoom(true);
$gmap->setSize('300px','300px');
$gmap->setZoom(11);
$gmap->setLang('fr');
$gmap->setDefaultHideMarker(false);
// cat1
$coordtab = array();
$coordtab []= array('paris france','paris france','paris france');
$gmap>addArrayMarkerByAddress($coordtab,'cat1','http://maps.gstatic.com/intl/fr_fr/mapfiles/ms/micons/red-pushpin.png');
$gmap->generate();
echo $gmap->getGoogleMap();
?> |
Partager