Thank you for the quick response!
It is not clear to me why the tiles get mixed up. Please explain.
I need multiple instances of the same provider.
Can I use something like this to fix the problem.
In the GmapProvider.cs code:
DbId in my case is public and is set from mGmapControl.MapProvider.DbId = ...
public override Guid Id
It is not clear to me why the tiles get mixed up. Please explain.
I need multiple instances of the same provider.
Can I use something like this to fix the problem.
In the GmapProvider.cs code:
DbId in my case is public and is set from mGmapControl.MapProvider.DbId = ...
public override Guid Id
{
get
{
return new Guid(string.Format("D7287DA0-A7FF-405F-8166-{0}", ("000000000000" + DbId.ToString()).Substring(DbId.ToString().Length - 1, 12)));
}
}