Exemplo n.º 1
0
        public GpxInformation LoadFile(string fileName)
        {
            _gpxData  = new GpxInformation();
            _fileName = fileName;
            var gpx = new GPXFile(_fileName);

            LoadRoutes(gpx);
            LoadWayPoints(gpx);
            LoadTracks(gpx);
            return(_gpxData);
        }
Exemplo n.º 2
0
 public GeometryFactory(GpxInformation gpxData)
 {
     _gpxInformation = gpxData;
 }