Click here to Skip to main content
15,896,063 members
Articles / Programming Languages / XML

Bernie’s Trackviewer

Rate me:
Please Sign up or sign in to vote.
4.84/5 (27 votes)
12 Jun 2016CPOL7 min read 61.7K   4.2K   70  
View and edit your GPS track records on a nice GUI with online maps and aerial views.
namespace GMap.NET.Internals
{
   using System.IO;

   /// <summary>
   /// struct for raw tile
   /// </summary>
   internal struct RawTile
   {
      public MapType Type;
      public Point Pos;
      public int Zoom;

      public RawTile(MapType Type, Point Pos, int Zoom)
      {
         this.Type = Type;
         this.Pos = Pos;
         this.Zoom = Zoom;
      }

      public override string ToString()
      {
         return Type + " at zoom " + Zoom + ", pos: " + Pos;
      }
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions