com.cocoahero.android.geojson.FeatureCollection Maven / Gradle / Ivy
package com.cocoahero.android.geojson;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.os.Parcel;
import android.os.Parcelable;
public class FeatureCollection extends GeoJSONObject {
// ------------------------------------------------------------------------
// Constants
// ------------------------------------------------------------------------
public static final String JSON_FEATURES = "features";
// ------------------------------------------------------------------------
// Instance Variables
// ------------------------------------------------------------------------
private final List mFeatures = new ArrayList();
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
public FeatureCollection() {
// Default Constructor
}
public FeatureCollection(JSONObject json) {
super(json);
JSONArray features = json.optJSONArray(JSON_FEATURES);
if (features != null) {
for (int i = 0; i < features.length(); i++) {
JSONObject featureJSON = features.optJSONObject(i);
if (featureJSON != null) {
this.mFeatures.add(new Feature(featureJSON));
}
}
}
}
// ------------------------------------------------------------------------
// Parcelable Interface
// ------------------------------------------------------------------------
public static final Parcelable.Creator CREATOR = new Creator() {
@Override
public FeatureCollection createFromParcel(Parcel in) {
return (FeatureCollection) readParcel(in);
}
@Override
public FeatureCollection[] newArray(int size) {
return new FeatureCollection[size];
}
};
// ------------------------------------------------------------------------
// Public Methods
// ------------------------------------------------------------------------
public void addFeature(Feature feature) {
this.mFeatures.add(feature);
}
public void removeFeature(Feature feature) {
this.mFeatures.remove(feature);
}
public List getFeatures() {
return this.mFeatures;
}
public void setFeatures(List features) {
this.mFeatures.clear();
if (features != null) {
this.mFeatures.addAll(features);
}
}
@Override
public String getType() {
return GeoJSON.TYPE_FEATURE_COLLECTION;
}
@Override
public JSONObject toJSON() throws JSONException {
JSONObject json = super.toJSON();
JSONArray features = new JSONArray();
for (Feature feature : this.mFeatures) {
features.put(feature.toJSON());
}
json.put(JSON_FEATURES, features);
return json;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy