![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.fastjson.support.geo.FeatureCollection Maven / Gradle / Ivy
package com.alibaba.fastjson.support.geo;
import com.alibaba.fastjson.annotation.JSONType;
import java.util.ArrayList;
import java.util.List;
/**
* @since 1.2.68
*/
@JSONType(typeName = "FeatureCollection", orders = {"type", "bbox", "coordinates"})
public class FeatureCollection
extends Geometry {
private List features = new ArrayList();
public FeatureCollection() {
super("FeatureCollection");
}
public List getFeatures() {
return features;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy