zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @author 温杨彪 2015-9-12
**/
define([
"dojo/_base/declare", 
"controls/toolbar/tools/NavBaseTool",
"esri/toolbars/navigation"
], function(
  declare, 
  NavBaseTool,
  Navigation
) {
  var RL = declare([NavBaseTool], {
    constructor: function(args) {
        this._normalIconClass="tool-pan-normal";
        this._overIconClass="tool-pan-over";
        this._selectedIconClass="tool-pan-select";
        this._disableClass="";
        this._navType=Navigation.PAN;
        this.tooltip="平移";
    },
  });
  return RL;
});