문제

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top