Rev 434 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 434 | Rev 436 | ||
---|---|---|---|
Line 11... | Line 11... | ||
11 | "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" |
11 | "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" |
12 | "<kml xmlns=\"http://earth.google.com/kml/2.2\">\r\n" |
12 | "<kml xmlns=\"http://earth.google.com/kml/2.2\">\r\n" |
13 | "<Document>\r\n" |
13 | "<Document>\r\n" |
14 | "<name>Mikrokopter GPS logging</name>\r\n" |
14 | "<name>Mikrokopter GPS logging</name>\r\n" |
15 | "\r\n" |
15 | "\r\n" |
16 | "<Style id=\"MK_gps-style\">\r\n" |
16 | "<Style id=\"FM_gps-style\">\r\n" |
17 | "<LineStyle>\r\n" |
17 | "<LineStyle>\r\n" |
18 | "<color>ff0000ff</color>\r\n" |
18 | "<color>ff00ff00</color>\r\n" |
19 | "<width>2</width>\r\n" |
19 | "<width>2</width>\r\n" |
20 | "</LineStyle>\r\n" |
20 | "</LineStyle>\r\n" |
21 | "</Style>\r\n" |
21 | "</Style>\r\n" |
22 | }; |
22 | }; |
Line 38... | Line 38... | ||
38 | // |
38 | // |
39 | //________________________________________________________________________________________________________________________________________ |
39 | //________________________________________________________________________________________________________________________________________ |
40 | const prog_char KML_PLACEMARK_HEADER[] = |
40 | const prog_char KML_PLACEMARK_HEADER[] = |
41 | { |
41 | { |
42 | "<Placemark>\r\n" |
42 | "<Placemark>\r\n" |
43 | "<name>Flight</name>\r\n" |
43 | "<name>FollowMe</name>\r\n" |
44 | "<styleUrl>#MK_gps-style</styleUrl>\r\n" |
44 | "<styleUrl>#FM_gps-style</styleUrl>\r\n" |
45 | }; |
45 | }; |
Line 46... | Line 46... | ||
46 | 46 | ||
47 | //________________________________________________________________________________________________________________________________________ |
47 | //________________________________________________________________________________________________________________________________________ |
48 | // |
48 | // |