简体   繁体   中英

How to drawing Heatmap using GMap.Net

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM