Files
@ 2f841e844536
Branch filter:
Location: seniordesign-ui/GMap.NET.Core/GMap.NET.Internals/LoadTask.cs - annotation
2f841e844536
635 B
text/x-csharp
fixed the problem of two forms being created. still need to fix the addToChart()
and addMarker()
and addMarker()
65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 |
using System;
namespace GMap.NET.Internals
{
/// <summary>
/// tile load task
/// </summary>
internal struct LoadTask : IEquatable<LoadTask>
{
public GPoint Pos;
public int Zoom;
public LoadTask(GPoint pos, int zoom)
{
Pos = pos;
Zoom = zoom;
}
public override string ToString()
{
return Zoom + " - " + Pos.ToString();
}
#region IEquatable<DrawTile> Members
public bool Equals(LoadTask other)
{
return (Pos == other.Pos && Zoom == other.Zoom);
}
#endregion
}
}
|