LabelCollisionDetection.cs
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:3k
源码类别:

GIS编程

开发平台:

C#

  1. // Copyright 2006 - Morten Nielsen (www.iter.dk)
  2. //
  3. // This file is part of SharpMap.
  4. // SharpMap is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. // 
  9. // SharpMap is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU Lesser General Public License for more details.
  13. // You should have received a copy of the GNU Lesser General Public License
  14. // along with SharpMap; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace SharpMap.Rendering
  20. {
  21. /// <summary>
  22. /// Class defining delegate for label collision detection and static predefined methods
  23. /// </summary>
  24. public class LabelCollisionDetection
  25. {
  26. /// <summary>
  27. /// Delegate method for filtering labels. Useful for performing custom collision detection on labels
  28. /// </summary>
  29. /// <param name="labels"></param>
  30. /// <returns></returns>
  31. public delegate void LabelFilterMethod(List<SharpMap.Rendering.Label> labels);
  32. #region Label filter methods
  33. /// <summary>
  34. /// Simple and fast label collision detection.
  35. /// </summary>
  36. /// <param name="labels"></param>
  37. public static void SimpleCollisionDetection(List<SharpMap.Rendering.Label> labels)
  38. {
  39. labels.Sort(); // sort labels by intersectiontests of labelbox
  40. //remove labels that intersect other labels
  41. for (int i = labels.Count - 1; i > 0; i--)
  42. if (labels[i].CompareTo(labels[i - 1]) == 0)
  43. {
  44. if (labels[i].Priority > labels[i - 1].Priority)
  45. labels.RemoveAt(i - 1);
  46. else
  47. labels.RemoveAt(i);
  48. }
  49. }
  50. /// <summary>
  51. /// Thorough label collision detection.
  52. /// </summary>
  53. /// <param name="labels"></param>
  54. public static void ThoroughCollisionDetection(List<SharpMap.Rendering.Label> labels)
  55. {
  56. labels.Sort(); // sort labels by intersectiontests of labelbox
  57. //remove labels that intersect other labels
  58. for (int i = labels.Count - 1; i > 0; i--)
  59. for (int j = i - 1; j > 0; j--)
  60. if (labels[i].CompareTo(labels[j]) == 0)
  61. if (labels[i].Priority >= labels[j].Priority)
  62. {
  63. labels.RemoveAt(j);
  64. i--;
  65. }
  66. else
  67. {
  68. labels.RemoveAt(i);
  69. i--;
  70. break;
  71. }
  72. }
  73. #endregion
  74. }
  75. }