/**
  * Sets the info window content
  *
  * @param string $content The info window content.
  *
  * @throws \Ivory\GoogleMap\Exception\OverlayException If the content is not valid.
  */
 public function setContent($content)
 {
     if (!is_string($content)) {
         throw OverlayException::invalidInfoWindowContent();
     }
     $this->content = $content;
 }