VectorLayer.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import Layer from 'ol/layer/Vector'
  2. import Source from 'ol/source/Vector'
  3. import Common from './Common'
  4. import Select from 'ol/interaction/Select.js';
  5. import {singleClick} from 'ol/events/condition'
  6. import * as olEvents from 'ol/events';
  7. import {OrderFunction} from 'ol/render';
  8. /**
  9. * @description KMap.VectorLayer 矢量图层
  10. */
  11. class VectorLayer {
  12. /**
  13. * @param {string} name 图层名称
  14. * @param {string} zIndex 图层层级
  15. */
  16. constructor(name,zIndex,options){
  17. let source = new Source({
  18. crossOrigin:'anonymous',
  19. })
  20. let ShowLevel = Common.ShowLevel
  21. let minZoom = ShowLevel[0]
  22. let maxZoom = ShowLevel[1]
  23. let style = null;
  24. if(options && options.source){
  25. source = options.source
  26. }
  27. if(options && options.minZoom){
  28. minZoom = options.minZoom
  29. }
  30. if(options && options.maxZoom){
  31. maxZoom = options.maxZoom
  32. }
  33. if(options && options.style){
  34. style = options.style
  35. }
  36. let layer = new Layer({
  37. source:source,
  38. name:name,
  39. zIndex:zIndex,
  40. minZoom:minZoom,
  41. maxZoom:maxZoom,
  42. })
  43. if(style){
  44. layer.setStyle(style)
  45. }
  46. this.layer = layer
  47. this.source = source
  48. }
  49. setMaxZoom(maxZoom){
  50. this.layer.setMaxZoom(maxZoom);
  51. }
  52. setMinZoom(minZoom){
  53. this.layer.setMinZoom(minZoom);
  54. }
  55. addFeature(feature){
  56. this.source.addFeature(feature)
  57. }
  58. refresh(){
  59. this.source.refresh()
  60. }
  61. getFeatureById(id){
  62. return this.source.getFeatureById(id)
  63. }
  64. addSingleSelect(callback,map,style){
  65. let option = {
  66. condition:singleClick,
  67. layers:[this.layer],
  68. multi:false
  69. };
  70. if(style){
  71. option["style"] = style
  72. }
  73. this.singleSelect = new Select(option)
  74. this.singleSelect.on("select",callback)
  75. map.addInteraction(this.singleSelect)
  76. }
  77. addToggleSelect(callback,map,style){
  78. let option = {
  79. condition:singleClick,
  80. toggleCondition: singleClick,
  81. layers:[this.layer],
  82. multi:true
  83. };
  84. if(style){
  85. option["style"] = style
  86. }
  87. this.toggleSelect = new Select(option)
  88. this.toggleSelect.on("select",callback)
  89. map.addInteraction(this.toggleSelect)
  90. }
  91. }
  92. export default VectorLayer