Feature.java [src/m/utils] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.utils;

import org.codehaus.jettison.json.JSONObject;

/**
 *
 * @author ktraff
 */
public class Feature {
    Layer layer;
    JSONObject geojson;
    int id;

    public Feature(Layer lyr, JSONObject featureJSON, int id) {
        layer = lyr;
        geojson = featureJSON;
        this.id = id;
    }
    
}