From d74b495736f0c04522ec54274b70fed0ded2878d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 27 Jun 2023 11:30:06 +0800
Subject: [PATCH] 任务新增导出
---
public/map/controls/overview/OverviewControl.css | 62 +++++++++++++++++++++++++++++++
1 files changed, 62 insertions(+), 0 deletions(-)
diff --git a/public/map/controls/overview/OverviewControl.css b/public/map/controls/overview/OverviewControl.css
new file mode 100644
index 0000000..a651fd9
--- /dev/null
+++ b/public/map/controls/overview/OverviewControl.css
@@ -0,0 +1,62 @@
+.overview-default-base-class {
+ /*width: 205px;
+ height: 144px;*/
+}
+.overview-container {
+ position: absolute;
+ right: 0px;
+ bottom: 0px;
+ overflow: visible;
+}
+.overview-map-container {
+ position: absolute;
+ width: 205px;
+ height: 144px;
+ right: 0px;
+ bottom: 0px;
+ opacity: 0;
+ background-color: rgb(255, 255, 255);
+ padding-top: 5px;
+ padding-left: 5px;
+ border-width: 1px;
+ border-style: solid none none solid;
+ border-color: rgb(153, 153, 153);
+}
+
+.overview-background {
+ background: transparent url(http://api.tianditu.com/img/map/bgImg.gif) repeat scroll 0% 0%;
+ width: 100%;
+ height: 100%;
+ border: 1px solid rgb(204, 204, 204);
+ z-index: 1000;
+ overflow: hidden;
+ cursor: default;
+}
+.overview-toggle-show {
+ position: absolute;
+ font-size: 0px;
+ cursor: pointer;
+ z-index: 3000;
+ width: 18px;
+ height: 17px;
+ left: auto;
+ right: 0px;
+ top: auto;
+ bottom: 0px;
+ background: transparent url(http://api.tianditu.com/img/map/overviewOpen.png) repeat scroll 0px 0px;
+ opacity: 1;
+}
+.overview-toggle-hide {
+ position: absolute;
+ font-size: 0px;
+ cursor: pointer;
+ z-index: 1000;
+ width: 18px;
+ height: 17px;
+ left: auto;
+ right: 0px;
+ top: auto;
+ bottom: 0px;
+ background: transparent url(http://api.tianditu.com/img/map/overviewClose.png) repeat scroll 0px 0px;
+ opacity: 1;
+}
\ No newline at end of file
--
Gitblit v1.9.3