Exemplo n.º 1
0
 public function toHtml(Google_Maps_Static $map)
 {
     $map->panNorth(60);
     $pan_north = sprintf('<a rel="nofollow" href="%s"><img src="%s" id="%s" alt="%s" /></a>', $_SERVER['PHP_SELF'] . '?' . $map->toQueryString(), $this->getPanNorthImage(), $this->getPanNorthId(), $this->getPanNorthAlt());
     $map->panSouth(60);
     $map->panWest(100);
     $pan_west = sprintf('<a rel="nofollow" href="%s"><img src="%s" id="%s" alt="%s" /></a>', $_SERVER['PHP_SELF'] . '?' . $map->toQueryString(), $this->getPanWestImage(), $this->getPanWestId(), $this->getPanWestAlt());
     $map->panEast(100);
     $map->panEast(100);
     $pan_east = sprintf('<a rel="nofollow" href="%s"><img src="%s" id="%s" alt="%s" /></a>', $_SERVER['PHP_SELF'] . '?' . $map->toQueryString(), $this->getPanEastImage(), $this->getPanEastId(), $this->getPanEastAlt());
     $map->panWest(100);
     $map->panSouth(60);
     $pan_south = sprintf('<a rel="nofollow" href="%s"><img src="%s" id="%s" alt="%s" /></a>', $_SERVER['PHP_SELF'] . '?' . $map->toQueryString(), $this->getPanSouthImage(), $this->getPanSouthId(), $this->getPanSouthAlt());
     $map->panNorth(60);
     return $pan_north . $pan_west . $pan_east . $pan_south;
 }