Changeset 11334 in josm
- Timestamp:
- 2016-11-28T10:49:40+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertToDataLayerAction.java
r11333 r11334 107 107 for (Marker marker : layer.data) { 108 108 final Node node = new Node(marker.getCoor()); 109 final Collection<String> mapping = Main.pref.getCollection("gpx.to-osm-mapping", 110 Arrays.asList("name", "name", "desc", "description", "cmt", "note", "src", "source", "sym", "gpxicon")); 109 final Collection<String> mapping = Main.pref.getCollection("gpx.to-osm-mapping", Arrays.asList( 110 GpxConstants.GPX_NAME, "name", 111 GpxConstants.GPX_DESC, "description", 112 GpxConstants.GPX_CMT, "note", 113 GpxConstants.GPX_SRC, "source", 114 GpxConstants.PT_SYM, "gpxicon")); 111 115 if (mapping.size() % 2 == 0) { 112 116 final Iterator<String> it = mapping.iterator();
Note:
See TracChangeset
for help on using the changeset viewer.