Newer
Older
osmCoverage / src / osm / jp / api / Feature.java
@hayashi hayashi on 27 May 2018 365 bytes OverpassAPI
  1. package osm.jp.api;
  2.  
  3. public class Feature {
  4. public static int NODE = 1;
  5. public static int AREA = 2;
  6. int node = 0;
  7. String key = null;
  8. String v = null;
  9. int point = 0;
  10. public Feature(int node, String k, String v, int point) {
  11. this.node = node;
  12. this.key = k;
  13. this.v = v;
  14. this.point = point;
  15. }
  16. }