/**
  * Sets the ground overlay image url.
  *
  * @param string $url The ground overlay image url.
  */
 public function setUrl($url)
 {
     if (!is_string($url)) {
         throw OverlayException::invalidGroundOverlayUrl();
     }
     $this->url = $url;
 }