Newer
Older
osmCoverage / src / osm / jp / api / Position.java
@hayashi hayashi on 25 Sep 2017 409 bytes Caverage_fuel 完成
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package osm.jp.api;
  7.  
  8. /**
  9. *
  10. * @author yuu
  11. */
  12. public class Position {
  13. public double lon;
  14. public double lat;
  15. public Position(double lat, double lon) {
  16. this.lat = lat;
  17. this.lon = lon;
  18. }
  19. }