From 71beec4a00d11e1d359311a5e9e6d00e513c811f Mon Sep 17 00:00:00 2001 From: Danny Koppenhagen Date: Wed, 29 Nov 2023 20:38:38 +0100 Subject: [PATCH] refactor(OlSourceTianditu): rename `OlSourceTianDiTu` to `OlSourceTianditu` BREAKING CHANGE: - renamed `OlSourceTianDiTu` to `OlSourceTianditu` closes #281 --- .../sources/{OlSourceTianDiTu.vue => OlSourceTianditu.vue} | 0 src/components/sources/index.ts | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/components/sources/{OlSourceTianDiTu.vue => OlSourceTianditu.vue} (100%) diff --git a/src/components/sources/OlSourceTianDiTu.vue b/src/components/sources/OlSourceTianditu.vue similarity index 100% rename from src/components/sources/OlSourceTianDiTu.vue rename to src/components/sources/OlSourceTianditu.vue diff --git a/src/components/sources/index.ts b/src/components/sources/index.ts index 02b3d533..3c6feb98 100644 --- a/src/components/sources/index.ts +++ b/src/components/sources/index.ts @@ -5,7 +5,7 @@ import OlSourceImageStatic from "./OlSourceImageStatic.vue"; import OlSourceImageWMS from "./OlSourceImageWMS.vue"; import OlSourceOSM from "./OlSourceOSM.vue"; import OlSourceStadiaMaps from "./OlSourceStadiaMaps.vue"; -import OlSourceTianDiTu from "./OlSourceTianDiTu.vue"; +import OlSourceTianditu from "./OlSourceTianditu.vue"; import OlSourceTileArcGISRest from "@/components/sources/OlSourceTileArcGISRest.vue"; import OlSourceTileDebug from "./OlSourceTileDebug.vue"; import OlSourceGeoTIFF from "./OlSourceGeoTIFF.vue"; @@ -24,7 +24,7 @@ function install(app: App) { app.component("ol-source-image-wms", OlSourceImageWMS); app.component("ol-source-osm", OlSourceOSM); app.component("ol-source-stadia-maps", OlSourceStadiaMaps); - app.component("ol-source-tianditu", OlSourceTianDiTu); + app.component("ol-source-tianditu", OlSourceTianditu); app.component("ol-source-tile-arcgis-rest", OlSourceTileArcGISRest); app.component("ol-source-tile-debug", OlSourceTileDebug); app.component("ol-source-geo-tiff", OlSourceGeoTIFF); @@ -47,7 +47,7 @@ export { OlSourceImageWMS, OlSourceOSM, OlSourceStadiaMaps, - OlSourceTianDiTu, + OlSourceTianditu, OlSourceTileArcGISRest, OlSourceTileDebug, OlSourceGeoTIFF,