Changeset 18283 in osm for applications
- Timestamp:
- 2009-10-27T01:21:26+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapMarkerDot.java
r14053 r18283 8 8 9 9 import org.openstreetmap.gui.jmapviewer.interfaces.MapMarker; 10 import org.openstreetmap.josm.data.coor.LatLon; 10 11 11 12 /** … … 25 26 public MapMarkerDot(double lat, double lon) { 26 27 this(Color.YELLOW, lat, lon); 28 } 29 30 public MapMarkerDot(LatLon latlon) { 31 this(Color.YELLOW, latlon.lat(), latlon.lon()); 27 32 } 28 33
Note:
See TracChangeset
for help on using the changeset viewer.