예제 #1
0
 function kml_LatLonAltBox($north, $south, $east, $west)
 {
     parent::kml_root();
     $this->set_north($north);
     $this->set_south($south);
     $this->set_east($east);
     $this->set_west($west);
 }
예제 #2
0
 function kml_Pair($key = null, $styleUrl = null)
 {
     parent::kml_root();
     if ($key !== null) {
         $this->set_key($key);
     }
     if ($styleUrl !== null) {
         $this->set_styleUrl($styleUrl);
     }
 }
예제 #3
0
 function kml_Status($code = null, $request = null)
 {
     parent::kml_root();
     if ($code !== null) {
         $this->set_x($code);
     }
     if ($request !== null) {
         $this->set_y($request);
     }
 }
예제 #4
0
 function kml_SchemaField($name = null, $type = null)
 {
     parent::kml_root();
     if ($name !== null) {
         $this->set_name($name);
     }
     if ($type !== null) {
         $this->set_type($type);
     }
 }
예제 #5
0
 function kml_Snippet($Snippet = null, $maxLines = null)
 {
     parent::kml_root();
     if ($Snippet !== null) {
         $this->set_Snippet($Snippet);
     }
     if ($maxLines !== null) {
         $this->set_maxLines($maxLines);
     }
 }
예제 #6
0
 function kml_LatLonBox($north, $south, $east, $west, $rotation = null)
 {
     parent::kml_root();
     $this->set_north($north);
     $this->set_south($south);
     $this->set_east($east);
     $this->set_west($west);
     if ($rotation !== null) {
         $this->set_rotation($rotation);
     }
 }
예제 #7
0
 function kml_Scale($x = null, $y = null, $z = null)
 {
     parent::kml_root();
     if ($x !== null) {
         $this->set_x($x);
     }
     if ($y !== null) {
         $this->set_y($y);
     }
     if ($z !== null) {
         $this->set_z($z);
     }
 }
예제 #8
0
 function kml_Delete($Object)
 {
     parent::kml_root();
     $this->set_Object($Object);
 }
 function kml_NetworkLinkControl()
 {
     parent::kml_root();
 }
예제 #10
0
 function kml_Lod()
 {
     parent::kml_root();
 }
예제 #11
0
 function kml_ItemIcon()
 {
     parent::kml_root();
 }
예제 #12
0
 function kml_Schema($name)
 {
     parent::kml_root();
     $this->set_name($name);
 }
예제 #13
0
 function kml_Change($Object)
 {
     parent::kml_root();
     $this->set_Object($Object);
 }
예제 #14
0
 function kml_Update($targetHref)
 {
     parent::kml_root();
     $this->set_targetHref($targetHref);
 }