Question

This is a instruction that I found http://blog.ethereal-engineering.com/2013/01/heatmaps-using-gheat-and-gmap.html.

How can I add this

  private decimal? weight;
  private object data;

  public decimal? Weight { get { return weight; } set { weight = value; } }
  public object Data { get { return data; } set { data = value; } }

to the GMap.NET reference's classes.

Was it helpful?

Solution

I too had this difficulty and it may be hard to implement as you need to get access to GMaps class files. If you want to implement this it is recommended to make a structure or class and add all the fields you want in order to use a Heatmap.

Also if you visit this link: http://greatmaps.codeplex.com/discussions/224237 their is some more extra info in regards to the link of the demo that you posted.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top