<?
/*
 * Project: NodeMap2.0
 * File: index.php
 * Purpose: Main index file of application
 */

require_once('class/ErrorHandler.class.php');
require_once('class/LogHandler.class.php');
require_once('class/FileHandler.class.php');
require_once('class/KMLFile.class.php');
require_once('class/KMLPlacemark.class.php');

$kmlPlacemark = new KMLPlacemark();
$kmlPlacemark->setName('Test name');
$kmlPlacemark->setDescription('Test description');
$kmlPlacemark->setXCoordinate(52.138476);
$kmlPlacemark->setYCoordinate(4.463046);

$kml = new KMLFile();
$kml->addPlacemark($kmlPlacemark);
echo $kml->toString();
?>