Subversion Repositories NaviCtrl

Rev

Rev 434 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 434 Rev 516
Line 1... Line 1...
1
//________________________________________________________________________________________________________________________________________
1
//________________________________________________________________________________________________________________________________________
2
// 
2
// 
3
// Definition of KML header and footer elements for documents, placemarks and linestrings
3
// Definition of KML header and footer elements for documents, placemarks and linestrings
4
//                              
4
//                              
5
//________________________________________________________________________________________________________________________________________
5
//________________________________________________________________________________________________________________________________________
6
const s8 KML_DOCUMENT_HEADER[] =
6
const s8 KML_DOCUMENT_HEADER1[] =
7
{
7
{
8
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
8
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
9
"<kml xmlns=\"http://earth.google.com/kml/2.2\">\r\n"
9
"<kml xmlns=\"http://earth.google.com/kml/2.2\">\r\n"
10
"<Document>\r\n"
10
"<Document>\r\n"
11
"<name>Mikrokopter GPS logging</name>\r\n"
11
"<name>MikroKopter "
-
 
12
};
-
 
13
 
-
 
14
const s8 KML_DOCUMENT_HEADER2[] =
-
 
15
{
-
 
16
"</name>\r\n"
12
"\r\n"
17
//"\r\n"
13
"<Style id=\"MK_gps-style\">\r\n"
18
"<Style id=\"MK_gps-style\">\r\n"
14
"<LineStyle>\r\n"
19
"<LineStyle>\r\n"
15
"<color>ff0000ff</color>\r\n"
20
"<color>ff0000ff</color>\r\n"
16
"<width>2</width>\r\n"
21
"<width>2</width>\r\n"
17
"</LineStyle>\r\n"
22
"</LineStyle>\r\n"
18
"</Style>\r\n"
23
"</Style>\r\n"
19
};
24
};
Line -... Line 25...
-
 
25
 
20
 
26
 
21
//________________________________________________________________________________________________________________________________________
27
//________________________________________________________________________________________________________________________________________
22
// 
28
// 
23
// footer of an KML- file.
29
// footer of an KML- file.
24
//                              
30
//