Searched refs:GeoJsonObject (Results 1 – 11 of 11) sorted by relevance
/external/geojson-jackson/src/test/java/org/geojson/ |
D | GeoJsonObjectVisitorTest.java | 14 private final GeoJsonObject geoJsonObject; 15 private GeoJsonObjectVisitor<GeoJsonObject> instance = new GeoJsonObjectVisitor<GeoJsonObject>() { 18 public GeoJsonObject visit(GeometryCollection geoJsonObject) { 24 public GeoJsonObject visit(FeatureCollection geoJsonObject) { 30 public GeoJsonObject visit(Point geoJsonObject) { 36 public GeoJsonObject visit(Feature geoJsonObject) { 42 public GeoJsonObject visit(MultiLineString geoJsonObject) { 48 public GeoJsonObject visit(Polygon geoJsonObject) { 54 public GeoJsonObject visit(MultiPolygon geoJsonObject) { 60 public GeoJsonObject visit(MultiPoint geoJsonObject) { [all …]
|
/external/geojson-jackson/src/main/java/org/geojson/ |
D | GeometryCollection.java | 7 public class GeometryCollection extends GeoJsonObject implements Iterable<GeoJsonObject> { 9 private List<GeoJsonObject> geometries = new ArrayList<GeoJsonObject>(); 11 public List<GeoJsonObject> getGeometries() { in getGeometries() 15 public void setGeometries(List<GeoJsonObject> geometries) { in setGeometries() 20 public Iterator<GeoJsonObject> iterator() { in iterator() 24 public GeometryCollection add(GeoJsonObject geometry) { in add()
|
D | Feature.java | 8 public class Feature extends GeoJsonObject { 13 private GeoJsonObject geometry; 33 public GeoJsonObject getGeometry() { in getGeometry() 37 public void setGeometry(GeoJsonObject geometry) { in setGeometry()
|
D | GeoJsonObject.java | 20 public abstract class GeoJsonObject implements Serializable { class 47 GeoJsonObject that = (GeoJsonObject)o; in equals()
|
D | Geometry.java | 6 public abstract class Geometry<T> extends GeoJsonObject {
|
D | FeatureCollection.java | 8 public class FeatureCollection extends GeoJsonObject implements Iterable<Feature> {
|
D | Point.java | 3 public class Point extends GeoJsonObject {
|
/external/geojson-jackson/src/test/java/org/geojson/jackson/ |
D | PointTest.java | 5 import org.geojson.GeoJsonObject; 45 GeoJsonObject value = mapper in itShouldDeserializeAPoint() 46 .readValue("{\"type\":\"Point\",\"coordinates\":[100.0,5.0]}", GeoJsonObject.class); in itShouldDeserializeAPoint() 55 GeoJsonObject value = mapper.readValue("{\"type\":\"Point\",\"coordinates\":[100.0,5.0,123]}", in itShouldDeserializeAPointWithAltitude() 56 GeoJsonObject.class); in itShouldDeserializeAPointWithAltitude() 70 …GeoJsonObject value = mapper.readValue("{\"type\":\"Point\",\"coordinates\":[100.0,5.0,123,456,789… in itShouldDeserializeAPointWithAdditionalAttributes() 71 GeoJsonObject.class); in itShouldDeserializeAPointWithAdditionalAttributes()
|
D | CrsTest.java | 5 import org.geojson.GeoJsonObject; 18 GeoJsonObject value = mapper.readValue("{\"crs\": { \"type\": \"link\", \"properties\": " in itShouldParseCrsWithLink() 20 + "\"type\":\"Point\",\"coordinates\":[100.0,5.0]}", GeoJsonObject.class); in itShouldParseCrsWithLink()
|
D | GeoJsonObjectTest.java | 4 import org.geojson.GeoJsonObject; 12 private class TestGeoJsonObject extends GeoJsonObject {
|
/external/geojson-jackson/ |
D | README.md | 18 If you want to read any GeoJson file read the value as GeoJsonObject and then test for the contents… 21 GeoJsonObject object = new ObjectMapper().readValue(inputStream, GeoJsonObject.class); 33 GeoJsonObject object = new ObjectMapper().readValue(inputStream, GeoJsonObject.class);
|