예제 #1
0
 public function __construct($id, $itemname = '', $kmlPoint = null)
 {
     parent::__construct($id, $itemname, $kmlPoint);
     $this->tag = 'PhotoOverlay';
 }
예제 #2
0
 public function __construct($id, $itemname = '', $kmlPoint = null, $d = 10000)
 {
     parent::__construct($id, $itemname, $kmlPoint);
     if (is_object($kmlPoint)) {
         $this->addCircle($kmlPoint, $d);
     }
 }