Newer
Older
osmCoverage / src / osm / jp / api / Feature.java
@hayashi hayashi on 27 May 2018 365 bytes OverpassAPI
package osm.jp.api;

public class Feature {
    public static int NODE = 1;
    public static int AREA = 2;
    
    int node = 0;
    String key = null;
    String v = null;
    int point = 0;
    
    public Feature(int node, String k, String v, int point) {
        this.node = node;
        this.key = k;
        this.v = v;
        this.point = point;
    }
}