Beispiel #1
0
 function kml_PolyStyle($color = null)
 {
     if ($color !== null) {
         $this->set_color($color);
     }
     parent::kml_ColorStyle();
 }
Beispiel #2
0
 function kml_LabelStyle($color = null, $scale = null)
 {
     parent::kml_ColorStyle();
     if ($color !== null) {
         $this->set_color($color);
     }
     if ($scale !== null) {
         $this->set_scale($scale);
     }
 }
Beispiel #3
0
 function kml_LineStyle($color = null, $width = null)
 {
     parent::kml_ColorStyle();
     if ($color !== null) {
         $this->set_color($color);
     }
     if ($width !== null) {
         $this->set_width($width);
     }
 }
Beispiel #4
0
 function kml_IconStyle()
 {
     parent::kml_ColorStyle();
 }