org.jxmapviewer.demos.GPXFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingset3-demos Show documentation
Show all versions of swingset3-demos Show documentation
Demonstrating the abilities of the Swing UI Toolkit swingset2 and swingx aka swingset3
The newest version!
package org.jxmapviewer.demos;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.logging.Logger;
import me.himanshusoni.gpxparser.GPXParser;
import me.himanshusoni.gpxparser.modal.Extension;
import me.himanshusoni.gpxparser.modal.GPX;
import me.himanshusoni.gpxparser.modal.Metadata;
import me.himanshusoni.gpxparser.modal.Route;
import me.himanshusoni.gpxparser.modal.Track;
import me.himanshusoni.gpxparser.modal.TrackSegment;
import me.himanshusoni.gpxparser.modal.Waypoint;
import swingset.StaticUtilities;
/*
in https://github.com/osmandapp/OsmAnd gibt es eine vollständige
public class net.osmand.gpx.GPXFile extends GPXUtilities.GPXExtensions
hier nur rudimentär
*/
public class GPXFile {
private static final Logger LOG = Logger.getLogger(GPXFile.class.getName());
private GPX gpx;
// in OsmAnd: public GPXUtilities.Metadata metadata = new GPXUtilities.Metadata();
private HashSet routes;
private HashSet
© 2015 - 2025 Weber Informatics LLC | Privacy Policy