/**
  * Set another map-type. Possible types are 'road', 'satellite', 'hybrid' and 'terrain'.
  *
  * @param string $maptype
  * @return Gmap
  */
 public function set_maptype($maptype)
 {
     $this->_options['maptype'] = Gmap::validate_maptype($maptype);
     return $this;
 }