Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.jts / src / main / java / org / gvsig / fmap / geom / jts / formats / geojson / GeoJsonConstants.java @ 47755

History | View | Annotate | Download (927 Bytes)

1
package org.gvsig.fmap.geom.jts.formats.geojson;
2

    
3

    
4
/**
5
 * Constants for GeoJSON objects
6
 * 
7
 * @author Martin Davis
8
 */
9
public class GeoJsonConstants {
10

    
11
  public static final String NAME_GEOMETRIES = "geometries";
12
  public static final String NAME_CRS = "crs";
13
  public static final String NAME_PROPERTIES = "properties";
14
  public static final String NAME_NAME = "name";
15
  public static final String NAME_TYPE = "type";
16
  public static final String NAME_POINT = "Point";
17
  public static final String NAME_LINESTRING = "LineString";
18
  public static final String NAME_POLYGON = "Polygon";
19
  public static final String NAME_COORDINATES = "coordinates";
20
  public static final String NAME_GEOMETRYCOLLECTION = "GeometryCollection";
21
  public static final String NAME_MULTIPOLYGON = "MultiPolygon";
22
  public static final String NAME_MULTILINESTRING = "MultiLineString";
23
  public static final String NAME_MULTIPOINT = "MultiPoint";
24

    
25
}