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/toolbar/tools/Map3DTool.js | 40 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/public/map/controls/toolbar/tools/Map3DTool.js b/public/map/controls/toolbar/tools/Map3DTool.js
new file mode 100644
index 0000000..7b3167f
--- /dev/null
+++ b/public/map/controls/toolbar/tools/Map3DTool.js
@@ -0,0 +1,40 @@
+/**
+ * @author 刘玉麟 2015-11-27
+ **/
+define([
+ "dojo",
+ "dojo/_base/declare",
+ "base/AppEvent",
+ "controls/toolbar/tools/BaseTool",
+ "dojo/dom-style"
+], function(
+ dojo,
+ declare,
+ AppEvent,
+ BaseTool,
+ domStyle
+) {
+ var RL = declare([BaseTool], {
+ constructor: function(args) {
+ this._normalIconClass="tool-Map3D-normal";
+ this._overIconClass="tool-Map3D-over";
+ this._selectedIconClass="tool-Map3D-select";
+ this._disableClass = "";
+ this.tooltip = "漫游";
+ },
+ deactivate: function(args) {
+ this.inherited(arguments);
+ },
+ activate: function() {
+ this.inherited(arguments);
+ },
+ _onClick: function(evt) {
+
+ },
+ postCreate: function() {
+ this.inherited(arguments);
+
+ }
+ });
+ return RL;
+});
\ No newline at end of file
--
Gitblit v1.9.3