function kml_MultiGeometry($Geometries = null)
 {
     parent::kml_Geometry();
     if ($Geometries !== null) {
         $this->Geometries = $Geometries;
     }
 }
Beispiel #2
0
 function kml_Point($lon, $lat, $alt = null)
 {
     parent::kml_Geometry();
     $this->coordinates = array($lon, $lat);
     if ($alt !== null) {
         $this->coordinates[] = $alt;
     }
 }
Beispiel #3
0
 function kml_LinearRing($coordinates)
 {
     parent::kml_Geometry();
     $this->set_coordinates($coordinates);
 }
Beispiel #4
0
 function kml_Model()
 {
     parent::kml_Geometry();
 }
Beispiel #5
0
 function kml_Polygon($outerBoundaryIs)
 {
     parent::kml_Geometry();
     $this->set_outerBoundaryIs($outerBoundaryIs);
 }