All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastjson2.support.geo.FeatureCollection Maven / Gradle / Ivy

There is a newer version: 2.0.53
Show newest version
package com.alibaba.fastjson2.support.geo;

import com.alibaba.fastjson2.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 - 2024 Weber Informatics LLC | Privacy Policy