track-style.ts 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import * as ol from 'ol'
  2. import * as style from 'ol/style'
  3. import * as layer from 'ol/layer'
  4. import * as source from 'ol/source'
  5. import * as geom from 'ol/geom'
  6. import * as proj from 'ol/proj'
  7. import * as interaction from 'ol/interaction'
  8. import * as extent from "ol/extent";
  9. import * as format from "ol/format";
  10. import { Coordinate } from 'ol/coordinate'
  11. const trackLineStyle = (feature: any, resolution: any, map: any, color: any, pMap: { get: (arg0: string) => any }, callback: (arg0: style.Style[], arg1: any[]) => void) => {
  12. const _style = []
  13. _style.push(new style.Style({
  14. stroke: new style.Stroke({
  15. color: color,
  16. width: 2
  17. })
  18. }))
  19. const geometry = feature.getGeometry();
  20. const length = geometry.getLength();//获取线段长度
  21. const radio = (200 * resolution) / length;
  22. const dradio = 1;//投影坐标系,如3857等,在EPSG:4326下可以设置dradio=10000
  23. const radius = 10
  24. const longRadius = radius * Math.SQRT2;
  25. const judgeIs = (p1: any[], p2: any[], p3: any[]) => {
  26. const E = 0.00000001
  27. const k1 = (ps: any[], pe: number[]) => {
  28. return (pe[1] - ps[1]) / (pe[0] - ps[0])
  29. }
  30. const k2 = (ps: any[], pe: number[]) => {
  31. return (pe[0] - ps[0]) / (pe[1] - ps[0])
  32. }
  33. const a = (ps: any[], pe: any[]) => {
  34. return Math.abs(k1(p1, ps) - k1(p1, pe)) <= E && Math.abs(k1(p1, ps) - k1(p1, pe)) >= -E
  35. }
  36. const d = (ps: any[], pe: any[]) => {
  37. return Math.abs(k2(p1, ps) - k2(p1, pe)) <= E && Math.abs(k2(p1, ps) - k2(p1, pe)) >= -E
  38. }
  39. const s = (p: any[]) => {
  40. return p3[0] === p[0] && p3[1] === p[1]
  41. }
  42. return s(p1) || s(p2) || a(p2, p3) || d(p2, p3)
  43. }
  44. for (let i = 0; i <= 1; i += radio) {
  45. const arrowLocation = geometry.getCoordinateAt(i);
  46. if (extent.containsCoordinate(map.getView().calculateExtent(map.getSize()), arrowLocation)) {
  47. geometry.forEachSegment((start: any[], end: any[]) => {
  48. if (!judgeIs(start, end, arrowLocation)) {
  49. return
  50. }
  51. let rotation = 0;
  52. const dx = end[0] - start[0];
  53. const dy = end[1] - start[1];
  54. rotation = Math.atan2(dy, dx);
  55. const pushStyle = (position: Coordinate) => {
  56. _style.push(new style.Style({
  57. geometry: new geom.Point(position),
  58. image: new style.RegularShape({
  59. stroke: new style.Stroke({
  60. color,
  61. width: 2,
  62. lineDash: [
  63. longRadius - (4 * (radius / 10)),
  64. longRadius + (5.5 * (radius / 10)),
  65. longRadius,
  66. 0
  67. ]
  68. }),
  69. radius: radius / Math.SQRT2,
  70. rotation: -rotation,
  71. angle: Math.PI / (180 / 90),
  72. points: 4
  73. })
  74. }));
  75. }
  76. if (map.getView().getZoom() < map.getView().getMaxZoom()) {
  77. const dx1 = end[0] - arrowLocation[0];
  78. const dy1 = end[1] - arrowLocation[1];
  79. const dx2 = arrowLocation[0] - start[0];
  80. const dy2 = arrowLocation[1] - start[1];
  81. if (dx1 != dx2 && dy1 != dy2) {
  82. if (Math.abs(dradio * dx1 * dy2 - dradio * dx2 * dy1) < 0.001) {
  83. pushStyle(arrowLocation)
  84. }
  85. }
  86. } else {
  87. if (Math.sqrt(Math.pow(start[0] - end[0], 2) + Math.pow(start[1] - end[1], 2)) > resolution * 100) {
  88. pushStyle([(start[0] + end[0]) / 2, (start[1] + end[1]) / 2])
  89. }
  90. }
  91. });
  92. }
  93. }
  94. const pList = []
  95. let lC = 0
  96. pList.push(pMap.get(geometry.getFirstCoordinate().join('-')))
  97. if (map.getView().getZoom() < map.getView().getMaxZoom()) {
  98. geometry.forEachSegment((start: number | Coordinate, end: number | any[]) => {
  99. // @ts-ignore
  100. const l = new geom.LineString([start, end])
  101. lC += l.getLength()
  102. if (extent.containsCoordinate(map.getView().calculateExtent(map.getSize()), <any>end) && lC > 200 * resolution) {
  103. // @ts-ignore
  104. pList.push(pMap.get(`${end[0]}-${end[1]}`))
  105. lC = 0
  106. }
  107. });
  108. } else {
  109. geometry.forEachSegment((start: number | Coordinate, end: number | any[]) => {
  110. // @ts-ignore
  111. const l = new geom.LineString([start, end])
  112. if (extent.containsCoordinate(map.getView().calculateExtent(map.getSize()), <any>end)) {
  113. // @ts-ignore
  114. pList.push(pMap.get(`${end[0]}-${end[1]}`))
  115. }
  116. });
  117. }
  118. callback(_style, pList)
  119. return _style
  120. }
  121. const trackPointStyle = (color: any, speed: any) => {
  122. const _style = []
  123. _style.push(new style.Style({
  124. image: new style.Circle({
  125. radius: 10,
  126. fill: new style.Fill({
  127. color: color,
  128. }),
  129. }),
  130. text: new style.Text({
  131. text: String(speed),
  132. font: "12px font-size", // 设置字体大小
  133. fill: new style.Fill({
  134. // 设置字体颜色
  135. color: "#000",
  136. }),
  137. })
  138. }),)
  139. return _style
  140. }
  141. export default {
  142. trackLineStyle,
  143. trackPointStyle
  144. }