ym-giswidget-2d 1.0.24 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -346,7 +346,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
346
346
  sortTemLayer: () => void;
347
347
  getExtent: () => import('ol/extent').Extent;
348
348
  addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
349
- addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
349
+ addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
350
350
  on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
351
351
  once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
352
352
  un: import('ol/Map').MapEventHandler<void>;
@@ -345,7 +345,7 @@ export declare const MapView: import('../../utils').WithInstall<import('vue').De
345
345
  sortTemLayer: () => void;
346
346
  getExtent: () => import('ol/extent').Extent;
347
347
  addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
348
- addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
348
+ addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
349
349
  on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
350
350
  once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
351
351
  un: import('ol/Map').MapEventHandler<void>;
@@ -352,7 +352,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
352
352
  sortTemLayer: () => void;
353
353
  getExtent: () => import('ol/extent').Extent;
354
354
  addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
355
- addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
355
+ addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
356
356
  on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
357
357
  once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
358
358
  un: import('ol/Map').MapEventHandler<void>;
@@ -348,7 +348,7 @@ export declare const MultiScreen: import('../../utils').WithInstall<import('vue'
348
348
  sortTemLayer: () => void;
349
349
  getExtent: () => import('ol/extent').Extent;
350
350
  addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
351
- addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, fillColor?: string, strokeColor?: string, strokeWidth?: number) => void;
351
+ addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
352
352
  on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
353
353
  once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
354
354
  un: import('ol/Map').MapEventHandler<void>;
@@ -1,13 +1,15 @@
1
1
  import { default as OLMap } from 'ym-gis-2d/mapView/Map';
2
- import { default as Style } from 'ol/style/Style';
2
+ import { default as IStyle } from 'ym-gis-2d/entity/IStyle';
3
+ import { IMapService } from 'ym-gis-2d/entity';
3
4
  type __VLS_Props = {
4
5
  map: OLMap;
5
- pointStyle?: Style;
6
- cancePointStyle?: Style;
7
- lineStyle?: Style;
8
- canceLineStyle?: Style;
9
- polygonStyle?: Style;
10
- cancePolygonStyle?: Style;
6
+ pointStyle?: IStyle;
7
+ cancePointStyle?: IStyle;
8
+ lineStyle?: IStyle;
9
+ canceLineStyle?: IStyle;
10
+ polygonStyle?: IStyle;
11
+ cancePolygonStyle?: IStyle;
12
+ selectLayers?: IMapService[];
11
13
  };
12
14
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
15
  export default _default;
@@ -3,7 +3,7 @@ import Select from "ym-gis-2d/interaction/Select";
3
3
  import { ElLoading } from "element-plus";
4
4
  import FeatureManager from "ym-gis-2d/feature/FeatureManager";
5
5
  import { intersects } from "ym-gis-2d/utils/GeometryUtil";
6
- import { getSelectPointStyle, getSelectCancePointStyle, getSelectLineStyle, getSelectCancelLineStyle, getSelectPolygonStyle, getSelectCancelPolygonStyle } from "ym-gis-2d/style/StyleManager";
6
+ import { getStyle, getSelectPointStyle, getSelectCancePointStyle, getSelectLineStyle, getSelectCancelLineStyle, getSelectPolygonStyle, getSelectCancelPolygonStyle } from "ym-gis-2d/style/StyleManager";
7
7
  const _sfc_main = /* @__PURE__ */ defineComponent({
8
8
  __name: "Select",
9
9
  props: {
@@ -13,27 +13,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
13
13
  lineStyle: {},
14
14
  canceLineStyle: {},
15
15
  polygonStyle: {},
16
- cancePolygonStyle: {}
16
+ cancePolygonStyle: {},
17
+ selectLayers: {}
17
18
  },
18
19
  setup(__props) {
19
20
  const props = __props;
20
- const pointStyle = props.pointStyle || getSelectPointStyle();
21
- const cancePointStyle = props.cancePointStyle || getSelectCancePointStyle();
22
- const lineStyle = props.lineStyle || getSelectLineStyle();
23
- const canceLineStyle = props.canceLineStyle || getSelectCancelLineStyle();
24
- const polygonStyle = props.polygonStyle || getSelectPolygonStyle();
25
- const cancePolygonStyle = props.cancePolygonStyle || getSelectCancelPolygonStyle();
21
+ const pointStyle = props.pointStyle ? getStyle(props.pointStyle) : getSelectPointStyle();
22
+ const cancePointStyle = props.cancePointStyle ? getStyle(props.cancePointStyle) : getSelectCancePointStyle();
23
+ const lineStyle = props.lineStyle ? getStyle(props.lineStyle) : getSelectLineStyle();
24
+ const canceLineStyle = props.canceLineStyle ? getStyle(props.canceLineStyle) : getSelectCancelLineStyle();
25
+ const polygonStyle = props.polygonStyle ? getStyle(props.polygonStyle) : getSelectPolygonStyle();
26
+ const cancePolygonStyle = props.cancePolygonStyle ? getStyle(props.cancePolygonStyle) : getSelectCancelPolygonStyle();
26
27
  const tempType = ["copy", "cut", "draw", "import", "union"];
27
28
  let holdCtrl = false;
28
29
  onMounted(() => {
29
- const select = new Select("rectangle", {
30
- pointStyle,
31
- cancePointStyle,
32
- lineStyle,
33
- canceLineStyle,
34
- polygonStyle,
35
- cancePolygonStyle,
36
- addTempLayer: false
30
+ const select = new Select("pointermove", {
31
+ pointStyle: props.pointStyle,
32
+ cancePointStyle: props.cancePointStyle,
33
+ lineStyle: props.lineStyle,
34
+ canceLineStyle: props.canceLineStyle,
35
+ polygonStyle: props.polygonStyle,
36
+ cancePolygonStyle: props.cancePolygonStyle,
37
+ addTempLayer: false,
38
+ selectLayers: props.selectLayers
37
39
  });
38
40
  props.map.interactionManager.addInteraction("select", select);
39
41
  let loadingInstance;
@@ -1,18 +1,20 @@
1
1
  export declare const Select: import('../../utils').WithInstall<import('vue').DefineComponent<{
2
2
  map: import('ym-gis-2d/mapView/Map').default;
3
- pointStyle?: import('ol/style').Style;
4
- cancePointStyle?: import('ol/style').Style;
5
- lineStyle?: import('ol/style').Style;
6
- canceLineStyle?: import('ol/style').Style;
7
- polygonStyle?: import('ol/style').Style;
8
- cancePolygonStyle?: import('ol/style').Style;
3
+ pointStyle?: import('ym-gis-2d/entity/IStyle').default;
4
+ cancePointStyle?: import('ym-gis-2d/entity/IStyle').default;
5
+ lineStyle?: import('ym-gis-2d/entity/IStyle').default;
6
+ canceLineStyle?: import('ym-gis-2d/entity/IStyle').default;
7
+ polygonStyle?: import('ym-gis-2d/entity/IStyle').default;
8
+ cancePolygonStyle?: import('ym-gis-2d/entity/IStyle').default;
9
+ selectLayers?: import('ym-gis-2d/entity').IMapService[];
9
10
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
10
11
  map: import('ym-gis-2d/mapView/Map').default;
11
- pointStyle?: import('ol/style').Style;
12
- cancePointStyle?: import('ol/style').Style;
13
- lineStyle?: import('ol/style').Style;
14
- canceLineStyle?: import('ol/style').Style;
15
- polygonStyle?: import('ol/style').Style;
16
- cancePolygonStyle?: import('ol/style').Style;
12
+ pointStyle?: import('ym-gis-2d/entity/IStyle').default;
13
+ cancePointStyle?: import('ym-gis-2d/entity/IStyle').default;
14
+ lineStyle?: import('ym-gis-2d/entity/IStyle').default;
15
+ canceLineStyle?: import('ym-gis-2d/entity/IStyle').default;
16
+ polygonStyle?: import('ym-gis-2d/entity/IStyle').default;
17
+ cancePolygonStyle?: import('ym-gis-2d/entity/IStyle').default;
18
+ selectLayers?: import('ym-gis-2d/entity').IMapService[];
17
19
  }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>>;
18
20
  export default Select;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ym-giswidget-2d",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -10,6 +10,6 @@
10
10
  "element-plus": "^2.9.0",
11
11
  "jszip": "^3.10.1",
12
12
  "ol": "^9.2.4",
13
- "ym-gis-2d": "1.0.3"
13
+ "ym-gis-2d": "1.0.4"
14
14
  }
15
15
  }