- 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;
- }
- }