File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
2
layersCommonDefaultProps ,
3
- useDefaults ,
3
+ useDefaults as useLayerDefaults ,
4
4
} from "@components/layers/LayersCommonProps" ;
5
5
6
6
import type { App } from "vue" ;
@@ -54,5 +54,5 @@ export {
54
54
OlWebglVectorLayer ,
55
55
type LayersCommonProps ,
56
56
layersCommonDefaultProps ,
57
- useDefaults as useLayerDefaults ,
57
+ useLayerDefaults ,
58
58
} ;
Original file line number Diff line number Diff line change 1
- import "ol/ol.css" ;
2
- import "ol-ext/dist/ol-ext.css" ;
3
- import "ol-contextmenu/ol-contextmenu.css" ;
4
- import "./assets/style.css" ;
5
1
import {
6
- Map ,
2
+ Animations ,
3
+ Geometries ,
4
+ Interactions ,
7
5
Layers ,
8
- Sources ,
6
+ Map ,
9
7
MapControls ,
10
- Geometries ,
8
+ Sources ,
11
9
Styles ,
12
- Interactions ,
13
- Animations ,
14
10
} from "./components" ;
15
11
import Providers from "./providers" ;
12
+
13
+ import "./assets/style.css" ;
14
+ import "ol-contextmenu/ol-contextmenu.css" ;
15
+ import "ol-ext/dist/ol-ext.css" ;
16
+ import "ol/ol.css" ;
17
+
16
18
import type { App , Plugin } from "vue" ;
17
19
import type { Vue3OpenlayersGlobalOptions } from "./types" ;
18
20
import type {
@@ -22,6 +24,7 @@ import type {
22
24
Gradient ,
23
25
} from "@components/styles" ;
24
26
export * from "./composables" ;
27
+ export * from "./types" ;
25
28
26
29
const install : Plugin = ( app : App , options ?: Vue3OpenlayersGlobalOptions ) => {
27
30
app . use ( Map . install ) ;
You can’t perform that action at this time.
0 commit comments