예제 #1
0
파일: KML.php 프로젝트: cdyweb/php-libkml
 /**
  *  Generate WKT
  */
 public function toWKT()
 {
     if (isset($this->feature)) {
         if ($this->feature instanceof Container) {
             return sprintf("GEOMETRYCOLLECTION(%s)", $this->feature->toWKT());
         } else {
             return $this->feature->toWKT();
         }
     }
     return '';
 }