Changeset 35650 in osm for applications/editors/josm/plugins/pbf
- Timestamp:
- 2020-11-23T16:35:44+01:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/pbf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf/build.xml
r35604 r35650 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="1 4699"/>5 <property name="plugin.main.version" value="17334"/> 6 6 7 7 <property name="plugin.author" value="Don-vip"/> -
applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java
r35634 r35650 5 5 import org.openstreetmap.josm.gui.MainApplication; 6 6 import org.openstreetmap.josm.io.OverpassDownloadReader; 7 import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutp outFormat;7 import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutputFormat; 8 8 import org.openstreetmap.josm.plugins.Plugin; 9 9 import org.openstreetmap.josm.plugins.PluginInformation; … … 32 32 MainApplication.getMenu().openLocation.addDownloadTaskClass(DownloadPbfTask.class); 33 33 // Alow JOSM to download PBF data from Overpass API 34 OverpassDownloadReader.registerOverpassOutp outFormatReader(OverpassOutpoutFormat.PBF, PbfReader.class);34 OverpassDownloadReader.registerOverpassOutputFormatReader(OverpassOutputFormat.PBF, PbfReader.class); 35 35 } 36 36 }
Note:
See TracChangeset
for help on using the changeset viewer.