Statistics
| Revision:

root / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / KmlTags.java @ 11205

History | View | Annotate | Download (3.47 KB)

1
package org.gvsig.gpe.kml;
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
/* CVS MESSAGES:
43
 *
44
 * $Id: KmlTags.java 11205 2007-04-13 13:16:21Z jorpiell $
45
 * $Log$
46
 * Revision 1.2  2007-04-13 13:16:21  jorpiell
47
 * Add KML reading support
48
 *
49
 * Revision 1.1  2007/03/07 08:19:10  jorpiell
50
 * Pasadas las clases de KML de libGPE-GML a libGPE-KML
51
 *
52
 * Revision 1.1  2007/02/28 11:48:31  csanchez
53
 * *** empty log message ***
54
 *
55
 * Revision 1.1  2007/02/20 10:53:20  jorpiell
56
 * A?adidos los proyectos de kml y gml antiguos
57
 *
58
 * Revision 1.1  2007/02/12 13:49:18  jorpiell
59
 * A?adido el driver de KML
60
 *
61
 *
62
 */
63
/**
64
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
65
 */
66
public class KmlTags {
67
        public static final String ROOT = "kml";
68
        
69
        public static final String PLACEMARK = "Placemark";
70
        public static final String OPEN = "open";
71
        public static final String GROUNDOVERLAY = "GroundOverlay";
72
                
73
        public static final String POINT = "Point";
74
        public static final String COORDINATES = "coordinates";
75
        public static final String LINESTRING = "LineString";
76
        public static final String LINEARRING = "LinearRing";
77
        public static final String POLYGON = "Polygon";        
78
        public static final String LATLONBOX = "LatLonBox";
79
        public static final String OUTERBOUNDARYIS = "outerBoundaryIs";        
80
                
81
        public static final String DOCUMENT = "Document";
82
        public static final String FOLDER = "Folder";
83
        public static final String STYLE = "Style";
84
                
85
        //Separator between coordinates
86
        public static final String COORDINATES_SEPARATOR = ",";
87
        
88
        //PlaceMark params
89
        public static final String NAME = "name";
90
        public static final String DESCRIPTION = "description";
91
        public static final String VISIBILITY = "visibility";
92
        public static final String LOOKAT = "LookAt";
93
        public static final String STYLEURL = "styleUrl";
94
        
95
        //Param added to each feature to create the legend
96
        public static final String FOLDER_NAME = "Folder Name";
97
        
98
        //Name for the default legend
99
        public static final String DEFAULT_LEGEND = "Default";
100
        
101
        //LookAt params
102
        public static final String LONGITUDE = "longitude";
103
        public static final String LATITUDE = "latitude";
104
        public static final String ALTITUDE = "altitude";
105
        public static final String RANGE = "range";
106
        public static final String TILT = "tilt";
107
        public static final String HEADING = "heading";
108
        
109
        //Others
110
        public static final String UNKNOWN_VERSION = "UnknownVersion";
111
        public static final String DEFAULT_SRS = "EPSG:4326";
112
}