homeMap.js 878 B

1234567891011121314151617181920212223242526272829
  1. import config from "@/api/config.js";
  2. import * as KMap from "@/utils/ol-map/KMap";
  3. import * as util from "@/common/ol_common.js";
  4. import Point from "ol/geom/Point.js";
  5. import Feature from "ol/Feature";
  6. import VectorLayer from "ol/layer/Vector.js";
  7. import WKT from "ol/format/WKT.js";
  8. import ScaleLine from "ol/control/ScaleLine";
  9. import { useRouter } from "vue-router";
  10. import eventBus from "@/api/eventBus";
  11. /**
  12. * @description 地图层对象
  13. */
  14. class HomeMap {
  15. constructor() {
  16. let that = this;
  17. let vectorStyle = new KMap.VectorStyle();
  18. this.vectorStyle = vectorStyle;
  19. }
  20. initMap(location, target) {
  21. let level = 19.2;
  22. let coordinate = util.wktCastGeom(location).getFirstCoordinate();
  23. this.kmap = new KMap.Map(target, level, coordinate[0], coordinate[1], null, 6, 22);
  24. eventBus.emit('homeMap:init', this.kmap);
  25. }
  26. }
  27. export default HomeMap;