tag = 'Placemark'; $this->name = $name; $this->description = $description; $this->styleUrl = $styleUrl; $this->nodes = is_array($nodes)?$nodes:array(); } /** * (non-PHPdoc) * @see EGMapKMLNode::toXML() */ public function toXML(){ $this->checkNode( 'name' ); $this->checkNode( 'description' ); $this->checkNode( 'styleUrl' ); return parent::toXML(); } }