source:
josm/src/org/openstreetmap/josm/data/osm/Node.java@
1
| Last change on this file since 1 was 1, checked in by , 21 years ago | |
|---|---|
| File size: 290 bytes | |
| Line | |
|---|---|
| 1 | package org.openstreetmap.josm.data.osm; |
| 2 | |
| 3 | import org.openstreetmap.josm.data.GeoPoint; |
| 4 | |
| 5 | |
| 6 | /** |
| 7 | * One node data, consisting of one world coordinate waypoint. |
| 8 | * |
| 9 | * @author imi |
| 10 | */ |
| 11 | public class Node extends OsmPrimitive { |
| 12 | |
| 13 | /** |
| 14 | * The coordinates of this node. |
| 15 | */ |
| 16 | public GeoPoint coor; |
| 17 | } |
Note:
See TracBrowser
for help on using the repository browser.
