source: trunk/src/index.php@ 7638

Last change on this file since 7638 was 7637, checked in by Pieter Naber, 15 years ago

Updated ErrorHandler to use our LogHandler. Updated LogHandler with an adjustable error level.

File size: 1.1 KB
Line 
1<?
2/*
3 * Project: NodeMap2.0
4 * File: index.php
5 * Purpose: Main index file of application
6 */
7
8require_once('config.php');
9require_once($config['file_init']);
10
11// Creating a placemark using our class
12$kmlPlacemark1 = new KMLPlacemark();
13$kmlPlacemark1->setName('Test name');
14$kmlPlacemark1->setDescription('Test description');
15$kmlPlacemark1->setLatitude(52.138476);
16$kmlPlacemark1->setLongitude(4.463046);
17$kmlPlacemark1->setStyle(PLACEMARK_GREEN);
18
19// Creating a second placemark using our class
20$kmlPlacemark2 = new KMLPlacemark();
21$kmlPlacemark2->setName('Placemark 2 name');
22$kmlPlacemark2->setDescription('This is the second placemark description');
23$kmlPlacemark2->setLatitude(52.638476);
24$kmlPlacemark2->setLongitude(4.063046);
25$kmlPlacemark2->setStyle(PLACEMARK_ORANGE);
26
27// Creating a KMLFile using our class, add our placemarks and echo
28$kml = new KMLFile();
29$kml->addPlacemark($kmlPlacemark1);
30$kml->addPlacemark($kmlPlacemark2);
31echo $kml->toString();
32
33// Let's try to read the node status file
34$nodeStatus = new FileHandler($config['node_status_file']);
35$kmlFile = KMLFile::parseFile($nodeStatus->getFile());
36?>
Note: See TracBrowser for help on using the repository browser.