Example #1
0
 function kml_Feature($name = null)
 {
     parent::kml_Object();
     if ($name !== null) {
         $this->set_name($name);
     }
 }
Example #2
0
 function kml_LookAt($longitude, $latitude, $range)
 {
     parent::kml_Object();
     $this->set_longitude($longitude);
     $this->set_latitude($latitude);
     $this->set_range($range);
 }
Example #3
0
 function kml_BalloonStyle($bgColor = null, $textColor = null)
 {
     parent::kml_Object();
     if ($bgColor !== null) {
         $this->set_bgColor($bgColor);
     }
     if ($textColor !== null) {
         $this->set_textColor($textColor);
     }
 }
Example #4
0
 function kml_ColorStyle($color = null, $colorMode = null)
 {
     parent::kml_Object();
     if ($color !== null) {
         $this->set_color($color);
     }
     if ($colorMode !== null) {
         $this->set_colorMode($colorMode);
     }
 }
 function kml_TimePrimitive()
 {
     parent::kml_Object();
 }
Example #6
0
 function kml_ListStyle()
 {
     parent::kml_Object();
 }
Example #7
0
 function kml_Icon($href)
 {
     parent::kml_Object();
     $this->set_href($href);
 }
Example #8
0
 function kml_Geometry()
 {
     parent::kml_Object();
 }
Example #9
0
 function kml_Region($LatLonAltBox)
 {
     parent::kml_Object();
     $this->set_LatLonAltBox($LatLonAltBox);
 }
Example #10
0
 function kml_StyleSelector()
 {
     parent::kml_Object();
 }