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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
define([
  "dojo/_base/declare",
  "dojo/_base/lang",
  "dojo/_base/array",
  "dojo/on",
  "dojo/fx",
  "dojox/gfx",
  "dojox/gfx/fx",
  "dojox/gesture/tap",
  "esri/SpatialReference",
  "esri/geometry/Extent",
  "esri/geometry/Multipoint",
  "esri/geometry/Point",
  "esri/geometry/Polygon",
  "esri/geometry/ScreenPoint",
  "esri/geometry/webMercatorUtils",
  "esri/geometry/geometryEngine",
  "esri/graphic",
  "esri/Color",
  "esri/renderers/ClassBreaksRenderer",
  "esri/symbols/Font",
  "esri/symbols/SimpleMarkerSymbol",
  "esri/symbols/SimpleFillSymbol",
  "esri/symbols/SimpleLineSymbol",
  "esri/symbols/TextSymbol",
  "esri/dijit/PopupTemplate",
  "esri/layers/GraphicsLayer"
], function (
  declare, lang, arrayUtils, on, coreFx, gfx, fx, tap,
  SpatialReference, Extent, Multipoint, Point, Polygon, ScreenPoint, webMercatorUtils, geometryEngine, Graphic,
  Color, ClassBreaksRenderer, Font, SimpleMarkerSymbol, SimpleFillSymbol, SimpleLineSymbol, TextSymbol,
  PopupTemplate, GraphicsLayer
) {
  return declare([GraphicsLayer], {
 
    //聚合渲染data
    userState: '设备',
    constructor: function (options) {
      /* options description:
        spatialReference: default 102100. A SpatialReference object using the wkid of that data.
        preClustered (boolean) : default false. Whether the data is pre-clustered or not. If true the addPreClusteredData method should be used to add data.
                                  If false use addData method and clusters will be calculated within the layer.
        clusterRatio (number): default 75. When not pre clustered this is the ratio to divide the width and height of the map by which is used to draw up a grid to represent cluster areas. Experiment based on your data.
        displaySubTypeFlares (boolean): default false. Whether to dipslay flares for sub types (ie the count of a property). If this is true, then subTypeFlareProperty must also be set
        subTypeFlareProperty (string): default null. If specified and displaySubTypeFlares is true, layer will display flares that contain a count of the objects that have the same value for the configured property.
        flareColor (esri/Color) : default new Color([0, 0, 0, 0.5]). The color for flares.
        maxFlareCount (number): default 8. The max number of flares to display. If this is too high they may overlap, depends on the size of the cluster symbols.
        displaySingleFlaresAtCount (number): default 8. If a cluster contains this count or less it will display flare that represent single objects. If it contains greater than this count it will display sub type flares if they have been configured to be displayed.
        singleFlareTooltipProperty (string): default null. Property name to get the values for display in a single point flares tooltips.
        textSymbol (esri/symbols/TextSymbol): default set below. The text symbol to use in clusters
        flareShowMode (string): default 'mouse'. Must be 'mouse' or 'tap'. On a mouse enabled device whether to show the flares on mouse enter and hide on mouse leave, or on tap / click. Devices with no mouse will behave like 'tap' anyway.
        clusteringBegin (function): default null. A basic callback function that get's fired when clustering is beginning.
        clusteringComplete (function): default null. A basic callback function that get's fired when clustering is complete.
        clusterAreaDisplay (string): default null. Can be either 'always' or 'hover'. 'always' will constantly display the cluster area, 'hover' will only display it on hover of cluster object
                                                   The cluster area is a ploygon of the total area covered by the points in a cluster. If using preClustered data, each cluster object must contain a property called 'points' which is an array of points for every point in the cluster. example: cluster.points = [[x1, y1], [x2, y2], [x3, y3]];
        clusterAreaRenderer (Renderer): default null. This is required if clusterAreaDisplay is set. This can be set in options constructor object or by calling setRenderer as the second argument.
        xPropertyName (string): default 'x'.  This is the name of the field in the dataset that represents the x coordinate.
        yPropertyName (string): default 'y'.  This is the name of the field in the dataset that represents the y coordinate.
        idPropertyName (string): default null. This is the name of the field in the dataset that represents a unique id which can be used to identify the flare.  This is usefull when you may have multiple points with the same lat/long.
      */
      //set options from constructor parameter or set defaults
      options = options || {};
      this.spatialRef = options.spatialReference || new SpatialReference({
        "wkid": 102100
      });
      this.preClustered = options.preClustered === true;
      this.clusterRatio = options.clusterRatio || 75;
 
      this.displaySubTypeFlares = options.displaySubTypeFlares === true;
      this.subTypeFlareProperty = options.subTypeFlareProperty || null;
 
      this.flareColor = options.flareColor || new Color([0, 0, 0, 0.5]);
      this.maxFlareCount = options.maxFlareCount || 8;
      this.displaySingleFlaresAtCount = options.displaySingleFlaresAtCount || 8;
      this.singleFlareTooltipProperty = options.singleFlareTooltipProperty || null;
      var defaultTextSymbol = new TextSymbol()//聚合字体
        .setColor(new Color([255, 255, 255]))
        // .setAlign(Font.ALIGN_START)//被否决
        .setOffset(+100, +10)//偏量
        // .setHaloSize(1)
        .setFont(new Font("15pt").setWeight(Font.WEIGHT_BOLD).setFamily("calibri"))
        .setSize("30")
        // .setOffsetY(-30)
        .setHorizontalAlignment("middle")
        .setVerticalAlignment("middle");
      // defaultTextSymbol.font.size = 30;
      // defaultTextSymbol.yoffset = 10;
      // console.log(defaultTextSymbol,2123445453)
      this.textSymbol = options.textSymbol || defaultTextSymbol;
      this.flareShowMode = options.flareShowMode || "mouse";
 
      //a couple of callbacks - could make them into events on the layer, and/or have the clustering return deferreds.
      this.clusteringBegin = options.clusteringBegin;
      this.clusteringComplete = options.clusteringComplete;
 
      this.clusterAreaDisplay = options.clusterAreaDisplay;
      this.clusterAreaRenderer = options.clusterAreaRenderer;
 
      this.xPropertyName = options.xPropertyName || 'x';
      this.yPropertyName = options.yPropertyName || 'y';
      this.idPropertyName = options.idPropertyName || null;
 
      if (this.clusterAreaDisplay && (this.clusterAreaDisplay !== 'always' && this.clusterAreaDisplay !== 'hover')) {
        console.error("clusterAreaDisplay can only be 'always' or 'hover'.");
        return;
      }
 
 
      if (this.flareShowMode !== "mouse" && this.flareShowMode !== "tap") {
        console.error("flareShowMode option can only be 'mouse' or 'tap'");
        return;
      }
 
      //init some stuff
      this.animationMultipleType = {
        combine: "combine",
        chain: "chain"
      };
 
      this.events = [];
      this.graphicEvents = [];
      this.animationsRunning = [];
      this.clusters = [];
      this.singles = [];
 
    },
 
 
    //#region override some GraphicsLayer methods
 
    //add an extra argument to setRenderer. It is an optional renderer for displaying the cluster areas. The clusterAreaRenderer can also be set in constructor.
    setRenderer: function (renderer, clusterAreaRenderer) {
      if (clusterAreaRenderer) {
        this.clusterAreaRenderer = clusterAreaRenderer;
      }
 
      return this.inherited(arguments);
    },
 
    _setMap: function (map, surface) {
      this.map = map;
      this.surface = surface;
 
      this.events.push(on(this.map, "resize", lang.hitch(this, this._mapResize)));
 
      //add pan and zoom events to limit to recluster
      this.events.push(on(this.map, "extent-change", lang.hitch(this, this._clusterData)));
 
      //Handle click event at the map level
      this.events.push(on(this.map, "click", lang.hitch(this, this._mapClick)));
 
      this.events.push(on(this.map.infoWindow, "show", lang.hitch(this, this._infoWindowShow)));
      this.events.push(on(this.map.infoWindow, "hide", lang.hitch(this, this._infoWindowHide)));
 
      this.events.push(on(this, "graphic-draw", this._graphicDraw));
      this.events.push(on(this, "graphic-node-remove", this._graphicNodeRemove));
 
      this.events.push(on(this, "mouse-over", this._graphicMouseOver));
      this.events.push(on(this, "mouse-out", this._graphicMouseOut));
 
      return this.inherited(arguments);
    },
 
 
    _unsetMap: function () {
      this.inherited(arguments);
      //remove events
      for (var i = 0, len = this.events.length; i < len; i++) {
        if (this.events[i]) {
          this.events[i].remove();
        }
      }
 
      for (i = 0, len = this.graphicEvents.length; i < len; i++) {
        if (this.graphicEvents[i]) {
          this.graphicEvents[i].remove();
        }
      }
    },
    _mapClick: function (e) { //地图全局点击事件 标记不能点击
      // console.log('地图全局点击事件');
 
      if (!e.target) {
        return;
      }
 
      var targetClass = e.target.getAttribute("class");
      if (!targetClass || targetClass.indexOf("cluster-object") === -1) {
        //if this was not a cluster object at all then clear any active one and return
        this._clearActiveCluster();
      } else if (targetClass.indexOf("cluster-object") !== -1) {
        //if click reached map click event and it is a cluster object, make sure an info window doesn't display for the cluster graphic
        if (this.map.infoWindow.cluster) {
          this._restoreInfoWindowSettings();
        }
        this.map.infoWindow.hide();
      }
    },
    // zoomNum: this.map.getZoom(),
    indexs: null,
    onceTime: 300,//防抖定时
    onceTimeMethod: null,//防抖判断属性
    onClick: function (evt, und, indexControl) { //标志以及聚合表示点击事件// 弹窗
      var eour = evt.graphic.attributes.clusterCount;
      var mySelf = this;
      // console.log(und)
      if (und == '控制端') {//控制端弹窗关闭
        // parent[0].layer.close(indexControl);
        // parent[0].layer.close(+indexControl + 1);
      }
 
      if (eour == undefined) {//判断是否是聚合状态
        // if(this.userState == '设备'){
        //   // console.log(this.userState)
        // }else if(this.userState == '警情'){
        //   // console.log(this.userState)
        // }else if(this.userState == '业主'){
        //   // console.log(this.userState)
        // }
        var dataO = evt;
        var aa = evt.graphic.screenX;
        var bb = evt.graphic.screenX;
        var data = {
          nums: evt.graphic.attributes.deviceNumber,
          nams: evt.graphic.attributes.deviceName,
          type: evt.graphic.attributes.jtype,
        }
        var cache = [];
        //解决重复JSON.stringify将循环结构转换为JSON。有几率出错,err:TypeError: Converting circular structure to JSON
        //舍弃上面方法,原因是对象里面嵌入对象,造成不能转换成JSON,吧对象去掉就好,
        var as = evt.graphic.attributes;
        var bs = {};
        for (let key in as) {
          if (typeof as[key] != 'object') {
            bs[key] = as[key]
            // as = as[key].attributes;
            // console.log('youduixang ')
            // break;
          }
        }
        var setdata = JSON.stringify(bs);
        cache = null;
        if (this.userState == '设备') {
          // console.log(this.userState)
          var fCard = (posi, setdata, winSize) => { // 设备弹窗函数
            var that = this,
              url = './popup/html/FlareClusterLayer_v3.html',
              clickD = null,
              clickG = null,
              downs = null,
              moves = null,
              ups = null;
 
            layui.use('layer', function () {
              that.layuiLayer = layui.layer;
              that.layuiLayer.config({
                extend: 'myskin/FlareClusterLayer.css'
              });
              that.layuiLayer.close(that.layuiLayer.index);
              //两个弹窗
              // that.layuiLayer.open({
              //   title: '',
              //   type: 2,
              //   shadeClose: false,
              //   shade: false,
              //   skin: 'demo-class',
              //   // id: 'onelyOne',
              //   maxmin: false, //开启最大化最小化按钮
              //   area: ['200px', '70px'],
              //   // area: 'auto',
              //   offset: posi,
              //   skin: 'flares',
              //   closeBtn: 0, //关闭按钮,可通过配置1和2来展示,0关闭
              //   content: [url, 'no'],
              //   resize: false,
              //   scrollbar: false,
              //   // tipsMore: true, //允许多个tipe
              //   // content: num,
              //   success: function (layero, index) {//成功后添加全局点击关闭
              //     // console.log(evt.graphic.attributes);
              //     $("#layui-layer-iframe" + index).contents().find("#input1").val(setdata);
              //     // console.log(layero, index);
              //     that.indexs = index;
 
              //     var isclickD = true
              //       , endx = null
              //       , endy = null;
              //     layero[0].style.position = 'absolute';
 
              //     downs = document.onmousedown = () => { //鼠标按下事件
              //       // console.log('down');//start
              //       // downs = document.onmousedown = null;
              //       var mx = window.event.clientX//鼠标初始位置
              //         , my = window.event.clientY
              //         , cx = this.offset[1].replace("px", "")//初始位置
              //         , cy = this.offset[0].replace("px", "");
 
              //       //判断鼠标是否在地图上
              //       // console.log(mx,'+',my);
              //       if (mx > 359 && mx < 1543 && my > 5 && my < 818) {
              //         // console.log('on map')
              //         if (endx != null && endy != null) {
              //           cx = endx;
              //           cy = endy;
              //         }
              //         moves = document.onmousemove = () => {//鼠标移动事件
              //           // console.log('move');//move
              //           // console.log(this.offset)
              //           var ux = window.event.clientX//记录实时位置
              //             , uy = window.event.clientY;
              //           endx = +cx + (ux - mx)// 初始位置+(鼠标初始位置-实时位置)
              //           endy = +cy + (uy - my);
              //           layero[0].style.left = endx + 'px';
              //           layero[0].style.top = endy + 'px';
              //           // console.log(+cx, +cy,'初始位置');
              //           // console.log(mx, my,'鼠标初始位置');
              //           // console.log(ux, uy,'记录实时位置');
              //           // console.log(ux, uy,'最后位置');
              //           isclickD = false;
              //           ups = document.onmouseup = () => {//鼠标抬起事件
              //             // console.log('up');//end
              //             // downs = document.onmousedown = null;
              //             moves = document.onmousemove = null;
              //             ups = document.onmouseup = null;
              //             var timess = setTimeout(() => {
              //               clearTimeout(timess);
              //               timess = null;
              //               isclickD = true;
              //             }, 1);
              //           }
              //         }
              //       }
              //     }
              //     clickD = document.onclick = () => {
              //       if (isclickD) {
              //         parent[0].layer.close(index);
              //         // parent[0].layer.close(+index + 1);
              //         // parent[0].layer.closeAll();
              //         // console.log(111111111111)
              //         clickD = document.onclick = null;
              //       }
              //     }
 
              //     var mouseWheel = that.map.on("mouse-wheel", myMouseWheelHandler);
              //     //鼠标滚轮事件
              //     function myMouseWheelHandler(event) {
              //       // console.log("Mouse wheel value = " + event.value);
              //       parent[0].layer.close(index);
              //       // parent[0].layer.close(+index + 1);
              //       mouseWheel.remove();
              //     }
 
              //   },
              //   end: function () { //关闭事件
 
              //   }
              // });
              that.layuiLayer.open({ //第二个iframe
                title: '',
                type: 2,
                shadeClose: true,
                shade: false,
                skin: 'demo-class',
                id: 'onelyTwo',
                maxmin: false, //开启最大化最小化按钮
                area: ['360px', '484px'],
                // area: 'auto',
                offset: winSize,
                skin: 'flare',
                isOutAnim: false,
                closeBtn: 2, //关闭按钮,可通过配置1和2来展示,0关闭
                content: ['./popup/html/FlareClusterLayer_v3 copy.html'],
                resize: false,
                scrollbar: false,
                // tipsMore: true, //允许多个tipe
                // content: num,
                success: function (layero, index) { //成功后添加全局点击关闭
                  // var z = document.onclick = ()=>{
                  //   parent[0].layer.close(index);
                  // //   // parent[0].layer.close(+index + 1);
                  //   z = null;
                  // }
                  //尝试传值
                  //js对象转json对象
                  // $("#layui-layer-iframe" + index).contents().find("input").val(JSON.stringify(evt.graphic.attributes));
                  $("#layui-layer-iframe" + index).contents().find("#sidIput").val(setdata);
                },
              })
              //一个弹窗
              //     that.layuiLayer.open({ //第二个iframe
              //       title: '',
              //       type: 2,
              //       shadeClose: true,
              //       shade: false,
              //       skin: 'demo-class',
              //       id: 'onelyTwo',
              //       maxmin: false, //开启最大化最小化按钮
              //       area: ['360px', '484px'],
              //       // area: 'auto',
              //       offset: winSize,
              //       skin: 'flare',
              //       isOutAnim: false,
              //       closeBtn: 2, //关闭按钮,可通过配置1和2来展示,0关闭
              //       content: ['./popup/html/FlareClusterLayer_v3 copy.html'],
              //       resize: false,
              //       scrollbar: false,
              //       // tipsMore: true, //允许多个tipe
              //       // content: num,
              //       success: function (layero, index) { //成功后添加全局点击关闭
              //         $("#layui-layer-iframe" + index).contents().find("#sidIput").val(setdata);
 
              //       },
              //     })
            })
          }
        } else if (this.userState == '警情') {
          // console.log(this.userState)
          var fCard = (posi, setdata, winSize) => { // 设备弹窗函数
            var that = this,
              url = './popup/html/FlareClusterLayer_v3.html',
              clickD = null,
              clickG = null,
              downs = null,
              moves = null,
              ups = null;
 
            layui.use('layer', function () {
              that.layuiLayer = layui.layer;
              that.layuiLayer.config({
                extend: 'myskin/FlareClusterLayer.css'
              });
              that.layuiLayer.close(that.layuiLayer.index);
              that.layuiLayer.open({
                title: '',
                type: 2,
                shadeClose: true,
                shade: false,
                skin: 'demo-class',
                id: 'onelyTwo',
                maxmin: false, //开启最大化最小化按钮
                area: ['360px', '484px'],
                // area: 'auto',
                offset: winSize,
                skin: 'flare',
                isOutAnim: false,
                closeBtn: 2, //关闭按钮,可通过配置1和2来展示,0关闭
                content: ['./popup/html/SupervisoryMapPdata.html'],
                resize: false,
                scrollbar: false,
                // tipsMore: true, //允许多个tipe
                // content: num,
                success: function (layero, index) { //成功后添加全局点击关闭
                  $("#layui-layer-iframe" + index).contents().find("#sidIput").val(setdata);
 
                },
              })
            })
          }
        } else if (this.userState == '业主') {
          // console.log(this.userState)
          var fCard = (posi, setdata, winSize) => { // 设备弹窗函数
            var that = this,
              url = './popup/html/FlareClusterLayer_v3.html',
              clickD = null,
              clickG = null,
              downs = null,
              moves = null,
              ups = null;
 
            layui.use('layer', function () {
              that.layuiLayer = layui.layer;
              that.layuiLayer.config({
                extend: 'myskin/FlareClusterLayer.css'
              });
              that.layuiLayer.close(that.layuiLayer.index);
 
              that.layuiLayer.open({
                title: '',
                type: 2,
                shadeClose: true,
                shade: false,
                skin: 'demo-class',
                id: 'onelyTwo',
                maxmin: false, //开启最大化最小化按钮
                area: ['360px', '484px'],
                // area: 'auto',
                offset: winSize,
                skin: 'flare',
                isOutAnim: false,
                closeBtn: 2, //关闭按钮,可通过配置1和2来展示,0关闭
                content: ['./popup/html/SupervisoryMapYdata.html'],
                resize: false,
                scrollbar: false,
                // tipsMore: true, //允许多个tipe
                // content: num,
                success: function (layero, index) { //成功后添加全局点击关闭
                  $("#layui-layer-iframe" + index).contents().find("#sidIput").val(setdata);
 
                },
              })
            })
          }
        }
 
 
        if (mySelf.onceTimeMethod == null) { //防抖.限制时间内点击次数,否则会造成不能正确销毁前一个弹窗
          var offsetMy = [+evt.screenY - 310 + 'px', +evt.screenX - 168 + 'px'];
          if (und == '控制端') {//控制端弹窗关闭
            var offsetMy = [+window.innerHeight / 2 - 115 + 'px', (+window.innerWidth - 360) / 2 + 257 + 'px'];
            // console.log('控制端中浮',offsetMy)
          }
          // console.log(evt.screenY);
          var winSize = [+window.innerHeight / 2 - 242 + 'px', +window.innerWidth - 380 + 'px']
          // console.log(winSize,4454645634536);
          fCard(offsetMy, setdata, winSize);
          mySelf.onceTimeMethod = setTimeout(() => {
            mySelf.onceTimeMethod = null;
          }, mySelf.onceTime);
        } else { };
 
      } else {
 
        var lgtd = Number(evt.graphic.attributes.x);//地图跟随缩放
        var lttd = Number(evt.graphic.attributes.y);
        // // console.log($(this).find('input').attr('lttd'));
        var position = new esri.geometry.Point(lgtd, lttd, new esri.SpatialReference({ wkid: 4326 }));//根据输入坐标信息找地图上的点
        this._map.centerAndZoom(position, this.map.getZoom() + 1);//缩放,10是缩放级别,可以自定义,数值越大缩放越大
 
        // parent[0].layer.close(this.indexs)
        // parent[0].layer.close(+this.indexs + 1)
 
        // console.log('111:', this.map.zoomToFullExtent(), '222:', evt, evt.graphic._extent, 'zoom');
      }
      // console.log(evt)
      if (und != '控制端') {
        this._restoreInfoWindowSettings();
 
        if (evt.graphic.attributes.isCluster) {
          evt.stopPropagation();
          //this._activateCluster(evt.graphic);
          this.map.infoWindow.hide();
        } else if (evt.graphic.attributes.isFlare) {
          evt.stopPropagation();
 
          var flareObject = this._getFlareFromGraphic(evt.graphic);
          if (!flareObject) {
            this._hideFlareDetail();
            this.map.infoWindow.hide();
            return;
          }
 
          if (flareObject.isSummaryFlare || !flareObject.singleData) {
            this._showFlareDetail(evt.graphic);
            this.map.infoWindow.hide();
            return;
          }
 
          //if we're clicking on a single data flare then show an info window
          var graphic = evt.graphic;
 
          this.originalInfoWindow = {
            highlight: lang.clone(this.map.infoWindow.get("highlight")),
            anchor: lang.clone(this.map.infoWindow.anchor)
          };
 
          this.map.infoWindow.hide();
          this.map.infoWindow.clearFeatures();
          this.map.infoWindow.set("highlight", false);
          this.map.infoWindow.setFeatures([graphic]);
 
          //when getting screen point make sure we use the location of the flare on screen, by converting the map point on the object.
          var sp = this.map.toScreen({
            x: flareObject.mapPoint.x,
            y: flareObject.mapPoint.y
          });
 
          //Could do something with the anchor of the info window here if wanted. The offsets can be a bit wacky as well.
          //var anchor = this._getInfoWindowAnchor(flareObject.degree);
          //this.map.infoWindow.anchor = anchor;
 
          this.map.infoWindow.cluster = this.activeCluster;
          //reset the geometry of the flare feature in the info window to be the actual location of the flared object, not the location of the flare graphic.
          var p = webMercatorUtils.geographicToWebMercator(new Point(flareObject.singleData[this.xPropertyName], flareObject.singleData[this.yPropertyName], this.spatialRef));
          this.map.infoWindow.features[0].geometry = p;
          this.map.infoWindow.show(sp);
 
        }
      }
    },
 
    //Add a data point to be clustered.
    //Each object passed in must contain an x and y property.
    //Data should also contain whatever property is set in singleFlareTooltipProperty, so the flare tooltip has something to display for summary flares if needed
    add: function (p) {
 
 
      // if passed a graphic, just use the base GraphicsLayer's add method
      if (p.declaredClass) {
        this.inherited(arguments);
        return;
      }
 
      //if we got here, then we're adding a single object
      //NOTE: Use this sparingly - better to use addData (or even better addPreClusteredData).
      //If using add() to add a large amount of objects (eg: in a long loop), clusters and their elements will be removed and recreated when changes are applied to them,this can be expensive
      //If you use addData and pass in an array clusters will only be created in the DOM once they have been fully calculated
 
      //can't add client side if preClustered is being used
      if (this.preClustered) {
        return;
      }
 
      //get an extent that is in web mercator to make sure it's flat for extent checking
      var webExtent = webMercatorUtils.project(map.extent, new SpatialReference({
        "wkid": 102100
      }));
      if (!this.gridClusters || this.gridClusters.length === 0) {
        this._createClusterGrid();
      }
 
      var obj = p;
      if (!this.allData) {
        this.allData = [];
      }
 
      this.allData.push(obj);
      var xVal = obj[this.xPropertyName];
      var yVal = obj[this.yPropertyName];
 
      //get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
      if (this.spatialRef.isWebMercator()) {
        web = [xVal, yVal];
      } else {
        web = webMercatorUtils.lngLatToXY(xVal, yVal);
      }
 
      //filter by visible extent first
      if (web[0] < webExtent.xmin || web[0] > webExtent.xmax || web[1] < webExtent.ymin || web[1] > webExtent.ymax) {
        return; //not in the visible extent
      }
 
      //loop cluster grid to see if it should be added to one
      for (var j = 0, jLen = this.gridClusters.length; j < jLen; j++) {
        var cl = this.gridClusters[j];
 
        if (web[0] < cl.extent.xmin || web[0] > cl.extent.xmax || web[1] < cl.extent.ymin || web[1] > cl.extent.ymax) {
          continue; //not here so carry on
        }
 
        //recalc the x and y of the cluster by averaging the points again
        cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
        cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
 
        //push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
        if (this.clusterAreaDisplay) {
          cl.points.push([xVal, yVal]);
        }
 
        cl.clusterCount++;
 
        var subTypeExists = false;
        for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
          if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
            cl.subTypeCounts[s].count++;
            subTypeExists = true;
            break;
          }
        }
        if (!subTypeExists) {
          cl.subTypeCounts.push({
            name: obj[this.subTypeFlareProperty],
            count: 1
          });
        }
 
        cl.singles.push(obj);
 
        if (cl.clusterCount === 1) {
          //this was the only point in this cluster area so add a single
          this._createSingle(obj);
        } else {
          if (cl.clusterCount === 2) {
            //if it was previously a single remove the single.
            var index = this.singles.indexOf(cl.singles[0]);
            this.remove(cl.singles[0].graphic);
            this.singles.splice(index, 1);
            delete cl.singles[0].graphic;
          } else {
            //only remove if the count is > 2. Would have been a single previously.
            this._removeCluster(cl);
          }
          this._createCluster(cl);
        }
      }
    },
 
    clear: function () {
      // Summary:  Remove all clusters and data points.
 
      this.inherited(arguments);
 
      this.activeCluster = null;
      this.activeFlareObject = null;
 
      //stop any animations that may still be running while clearing graphics
      this._stopAnimations();
 
      //remove all created cluster group elements
      var node = this.getNode();
      dojo.query("g.cluster-group", node).forEach(dojo.destroy);
 
      //clear any graphic events
      for (var i = 0, len = this.graphicEvents.length; i < len; i++) {
        if (this.graphicEvents[i]) {
          this.graphicEvents[i].remove();
        }
      }
 
      // this.map.infoWindow.hide();
      // this.map.infoWindow.clearFeatures();
 
      this.gridClusters = [];
      this.clusters = [];
      this.singles = [];
    },
 
    //#endregion
 
    //#region other event handlers
 
    _mapResize: function () {
      //destroy any orphaned cluster group nodes
      dojo.query("g.cluster-group:empty", this.getNode()).forEach(dojo.destroy);
    },
 
 
    _graphicDraw: function (e) {
      var g = e.graphic;
 
      if (g.attributes.isCluster) {
        //create the cluster graphics if this is a cluster being drawn
        var cl = this._getClusterFromGraphic(g);
        this._createClusterGraphic(cl);
        if (this.activeCluster === cl) {
          this._clearActiveCluster();
        }
      } else if (g.attributes.isClusterArea) {
        var sh = g.getShape();
        sh.moveToBack();
      }
 
 
      return this.inherited(arguments);
    },
 
    _graphicNodeRemove: function (e) {
      var g = e.graphic;
      if (g.attributes.isCluster) {
        //remove any group graphics related to this cluster as they'll be recreated when the node is redrawn.
        var cl = this._getClusterFromGraphic(g);
        if (cl) {
          dojo.destroy(cl.groupShape.rawNode);
        }
      }
    },
 
    _graphicMouseOver: function (e) {
      if (this.flareShowMode === "mouse") {
        if (e.graphic.attributes.isCluster) {
          //this._activateCluster(e.graphic);
        } else if (e.graphic.attributes.isFlare) {
          this._showFlareDetail(e.graphic);
        }
      }
    },
 
    _graphicMouseOut: function (e) {//鼠标进入图片事件
 
      if (e.graphic.attributes.isFlare) {
        this._hideFlareDetail();
      }
    },
 
 
    _infoWindowShow: function (e) {
      if (typeof (this.map.infoWindow.features !== 'undefined') && this.map.infoWindow.features !== null) {
        for (var i = 0; i < this.map.infoWindow.features.length; i++) {
          if (typeof (this.map.infoWindow.features[i].attributes) !== 'undefined' && (this.map.infoWindow.features[i].attributes.isCluster || this.map.infoWindow.features[i].attributes.isClusterArea)) {
            this.map.infoWindow.hide(); //if a cluster never show an info window
            return;
          }
        }
      }
    },
 
    _infoWindowHide: function (e) {
      this.map.infoWindow.cluster = null;
    },
 
 
    //#endregion
 
 
    //#region extra public methods
 
    addPreClusteredData: function (data) {
      /*
          Add data that is preclustered - (ie clustered server side).
          Data is an array, clusters must contain an x and y property as well as a clusterCount property. subTypeCounts is optional.
          Clusters that have a count less than the this.displaySingleFlaresAtCount option must all contain the data for the single points in an array called singles
         Singles should also be in the array, they only need to contain an x and y property. Singles should also contain whatever property is set in singleFlareTooltipProperty, so the flare tooltip has something to display for summary flares if needed
      */
 
      if (this.clusteringBegin) {
        this.clusteringBegin();
      }
 
      this.allData = [];
      this.preClustered = true; //if we're adding preclustered data, force this flag to true
      for (var i = 0, len = data.length; i < len; i++) {
        if (data[i].clusterCount) {
          //this is a cluster as it contains clusterCount
          var cl = data[i];
          this._createCluster(cl);
        } else {
          this._createSingle(data[i]);
        }
      }
 
      if (this.clusteringComplete) {
        this.clusteringComplete();
      }
    },
 
 
    addData: function (data) {
      /*
          Add data to be clustered.
          Data is an array of objects. Each object passed in must contain an x and y property.
          Data should also contain whatever property is set in singleFlareTooltipProperty if one is set, so the flare tooltip has something to display for summary flares if needed
          This will also clear all data first. add() can be used to add single objects at any time.
      */
      this.allData = data;
      this._clusterData();
    },
 
 
    //#endregion
 
 
    //#region internal stuff
 
    _restoreInfoWindowSettings: function () {
      if (this.originalInfoWindow) {
        this.map.infoWindow.set("highlight", this.originalInfoWindow.highlight);
        this.map.infoWindow.anchor = this.originalInfoWindow.anchor;
      }
    },
 
    _clusterData: function () {
      //此函数当前仅适用于不使用预聚集数据的情况
      //this function currently only applies if not using preclustered data
      // console.log('改变111111111111111')
 
      if (this.preClustered) {
        return;
      }
 
      if (this.clusteringBegin) {
        this.clusteringBegin();
      }
 
      this.clear();
 
      //get an extent that is in web mercator to make sure it's flat for extent checking
      //The webextent will need to be normalized since panning over the international dateline will cause
      //cause the extent to shift outside the -180 to 180 degree window.  If we don't normalize then the
      //clusters will not be drawn if the map pans over the international dateline.
      var webExtent = !this.map.extent.spatialReference.isWebMercator() ? webMercatorUtils.project(this.map.extent, new SpatialReference({
        "wkid": 102100
      })) : this.map.extent;
      var normalizedWebExtent = webExtent.normalize();
      webExtent = normalizedWebExtent[0];
 
      if (normalizedWebExtent.length > 1) {
        webExtent = webExtent.union(normalizedWebExtent[1]);
        this.extentIsUnioned = true;
      } else {
        this.extentIsUnioned = true;
      }
 
      this._createClusterGrid(webExtent);
 
      var dataLength = this.allData.length;
      var web, obj, xVal, yVal;
      for (var i = 0; i < dataLength; i++) {
        obj = this.allData[i];
        xVal = obj[this.xPropertyName];
        yVal = obj[this.yPropertyName];
 
        //get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
        if (this.spatialRef.isWebMercator()) {
          web = [xVal, yVal];
        } else {
          web = webMercatorUtils.lngLatToXY(xVal, yVal);
        }
 
        //filter by visible extent first
        if (web[0] < webExtent.xmin || web[0] > webExtent.xmax || web[1] < webExtent.ymin || web[1] > webExtent.ymax) {
          continue;
        }
 
        //loop cluster grid to see if it should be added to one
        for (var j = 0, jLen = this.gridClusters.length; j < jLen; j++) {
          var cl = this.gridClusters[j];
 
          if (web[0] < cl.extent.xmin || web[0] > cl.extent.xmax || web[1] < cl.extent.ymin || web[1] > cl.extent.ymax) {
            continue; //not here so carry on
          }
 
          //recalc the x and y of the cluster by averaging the points again
          cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
          cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
 
          //push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
          if (this.clusterAreaDisplay) {
            cl.points.push([xVal, yVal]);
          }
 
          cl.clusterCount++;
 
          var subTypeExists = false;
          for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
            if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
              cl.subTypeCounts[s].count++;
              subTypeExists = true;
              break;
            }
          }
          if (!subTypeExists) {
            cl.subTypeCounts.push({
              name: obj[this.subTypeFlareProperty],
              count: 1
            });
          }
 
          cl.singles.push(obj);
        }
      }
      for (i = 0, len = this.gridClusters.length; i < len; i++) {
        if (this.gridClusters[i].clusterCount === 1) {
          // console.log(this.gridClusters)
 
          this._createSingle(this.gridClusters[i].singles[0]);
        } else if (this.gridClusters[i].clusterCount > 0) {
          this._createCluster(this.gridClusters[i]);
        }
      }
    },
 
    _createClusterGrid: function (webExtent) {
      //get the total amount of grid spaces based on the height and width of the map (divide it by clusterRatio) - then get the degrees for x and y
      var xCount = Math.round(this.map.width / this.clusterRatio);
      var yCount = Math.round(this.map.height / this.clusterRatio);
 
      //if the extent has been unioned due to normalization, double the count of x in the cluster grid as the unioning will halve it.
      if (this.extentIsUnioned) {
        xCount *= 2;
      }
 
      var xw = (webExtent.xmax - webExtent.xmin) / xCount;
      var yh = (webExtent.ymax - webExtent.ymin) / yCount;
 
      var gsxmin, gsxmax, gsymin, gsymax;
 
      //create an array of clusters that is a grid over the visible extent. Each cluster contains the extent (in web merc) that bounds the grid space for it.
      this.gridClusters = [];
      for (var i = 0; i < xCount; i++) {
        gsxmin = webExtent.xmin + (xw * i);
        gsxmax = gsxmin + xw;
        for (var j = 0; j < yCount; j++) {
          gsymin = webExtent.ymin + (yh * j);
          gsymax = gsymin + yh;
          var ext = new Extent({
            xmin: gsxmin,
            xmax: gsxmax,
            ymin: gsymin,
            ymax: gsymax
          });
          ext.setSpatialReference(new SpatialReference({
            "wkid": 102100
          }));
          this.gridClusters.push({
            extent: ext,
            clusterCount: 0,
            subTypeCounts: [],
            singles: [],
            points: []
          });
        }
      }
    },
 
    _createSingle: function (single) {//加载图标样式
      this.singles.push(single);
      delete single.graphic;
      var symbol;
      if (single.tenant_id == undefined) {//如果不是业主
        if (single.dtype == 3) {
          symbol = new esri.symbol.PictureMarkerSymbol("./images/by-jingbao.png", 40, 40);
        } else if (single.dtype == 2) {
          symbol = new esri.symbol.PictureMarkerSymbol("./images/selfbaojin2.gif", 80, 80);
        } else if (single.dtype == 1) {
          symbol = new esri.symbol.PictureMarkerSymbol("./images/zx-jingbao.png", 40, 40);
        } else if (single.dtype == 0) {
          symbol = new esri.symbol.PictureMarkerSymbol("./images/dx-jingbao.png", 40, 40);
        }
        // if (single.state != '') {
        //   symbol = new esri.symbol.PictureMarkerSymbol("./images/by-jingbao.png", 40, 40);
        // } else {
        //   if (single.jtype == 1) {
        //     symbol = new esri.symbol.PictureMarkerSymbol("./images/selfbaojin2.gif", 80, 80);
        //   } else {
        //     if (single.onlineStatus == 1) {
        //       symbol = new esri.symbol.PictureMarkerSymbol("./images/zx-jingbao.png", 40, 40);
        //     } else {
        //       symbol = new esri.symbol.PictureMarkerSymbol("./images/dx-jingbao.png", 40, 40);
        //     }
        //   }
        // }
      } else {//是业主
        symbol = new esri.symbol.PictureMarkerSymbol("./images/Yz.png", 40, 40);
      }
 
 
 
      var point = new Point(single[this.xPropertyName], single[this.yPropertyName], this.spatialRef);
      var attributes = lang.clone(single);
      var graphic = new Graphic(point, symbol, attributes, null);
      single.graphic = graphic;
      this.add(graphic);
    },
 
    _createCluster: function (cluster) {
 
      this.clusters.push(cluster);
 
      //add the graphic using the Graphics Layer add
      var point = new Point(cluster.x, cluster.y, this.spatialRef);
 
      //clear some props as we may be recreating the cluster
      delete cluster.graphic;
      delete cluster.graphicShape;
      delete cluster.groupShape;
 
      var attributes = {
        x: cluster.x,
        y: cluster.y,
        clusterCount: cluster.clusterCount
      }
 
      var areaGraphic;
      if (this.clusterAreaDisplay && cluster.points && cluster.points.length > 0) {
        if (!this.clusterAreaRenderer) {
          console.error("_createCluster: clusterAreaRenderer must be set if clusterAreaDisplay is set.");
          return;
        }
 
        var mp = new Multipoint(this.spatialRef);
        mp.points = cluster.points;
        var area = geometryEngine.convexHull(mp, true); //use convex hull on the points to get the boundary
        var areaAttr = lang.clone(attributes);
        areaAttr.isClusterArea = true;
        areaGraphic = new Graphic(area, null, areaAttr, null);
        areaGraphic.setSymbol(this.clusterAreaRenderer.getSymbol(areaGraphic));
        this.add(areaGraphic);
        areaGraphic.hide();
      }
 
      attributes.isCluster = true;
      var graphic = new Graphic(point, null, attributes, null);
      cluster.graphic = graphic;
      cluster.areaGraphic = areaGraphic;
      this.add(graphic);
 
    },
 
    _createClusterGraphic: function (cluster) {
 
      if (cluster.groupShape) {
        dojo.destroy(cluster.groupShape.rawNode);
      }
 
      //create a group element to hold the cluster and text and other things
      var groupShape = this.surface.createGroup();
 
      //Note: dojo.addClass() doesn't seem to work on svg elements, that's why all the setAttributes for each shape.
      groupShape.rawNode.setAttribute("class", "cluster-group cluster-object");
      cluster.groupShape = groupShape;
 
      //append the group to this layer's node
      var layerNode = this.getNode();
      layerNode.appendChild(groupShape.rawNode);
 
      var gShape = cluster.graphic.getShape();
      if (!gShape) {
        return; //couldn't get the graphic shape that was just added, it's probably not visible on the map
      }
 
      //add an area graphic first if one has been set
      var areaShape;
      if (cluster.areaGraphic) {
        if (this.clusterAreaDisplay === 'always') {
          cluster.areaGraphic.show();
        }
        areaShape = cluster.areaGraphic.getShape();
        if (areaShape) {
          areaShape.rawNode.setAttribute("pointer-events", "none");
        }
      }
 
      cluster.graphicShape = gShape;
      cluster.graphicShape.rawNode.setAttribute("class", "cluster-object");
      groupShape.add(cluster.graphicShape);
 
      //add a text element for the label to display the count and add to the group
      var shapeCenter = this._getShapeCenter(cluster.graphicShape);
      var textShape = groupShape.createText({
        x: shapeCenter.x,
        y: shapeCenter.y + (this.textSymbol.font.size / 2 - 6),//聚合文字设置
        text: cluster.clusterCount,
        align: 'middle'
      })
        .setFont({
          size: this.textSymbol.font.size,
          family: this.textSymbol.font.family,
          weight: this.textSymbol.font.weight
        })
        .setFill(this.textSymbol.color);
      textShape.rawNode.setAttribute("class", "cluster-text-counts");
      textShape.rawNode.setAttribute("pointer-events", "none"); //remove pointer events from text
      groupShape.add(textShape);
      cluster.textShape = textShape;
 
      var anims = [];
      //animate drawing of the cluster.
      var create = fx.animateTransform({
        duration: 200,
        shape: groupShape,
        transform: [{
          name: "scaleAt",
          start: [0, 0, shapeCenter.x, shapeCenter.y],
          end: [1, 1, shapeCenter.x, shapeCenter.y]
        }],
        onEnd: dojo.partial(this._animationEnd, this)
      });
      anims.push(create);
 
      //animate area drawing if it is visible now
      if (this.clusterAreaDisplay === 'always' && areaShape) {
        var areaCenter = this._getShapeCenter(areaShape);
        var areaCreate = fx.animateTransform({
          duration: 200,
          shape: areaShape,
          transform: [{
            name: "scaleAt",
            start: [0, 0, areaCenter.x, areaCenter.y],
            end: [1, 1, areaCenter.x, areaCenter.y]
          }],
          onEnd: dojo.partial(this._animationEnd, this)
        });
        anims.push(areaCreate);
      }
 
      this._playAnimations(anims, this.animationMultipleType.combine);
 
      //add events
      if (this.flareShowMode === "mouse") {
        this.graphicEvents.push(on(groupShape, "mouseleave", lang.hitch(this, this._clearActiveCluster)));
      }
    },
 
    _activateCluster: function (graphic) {
 
      var cluster = this._getClusterFromGraphic(graphic);
      if (!cluster) {
        return;
      }
 
      if (this.activeCluster) {
        this._clearActiveCluster();
      }
 
      this.activeCluster = cluster;
 
      var groupShape = cluster.groupShape;
      var graphicShape = cluster.graphicShape;
      groupShape.moveToFront();
      var center = this._getShapeCenter(graphicShape);
 
      var scaleAnims = [];
      if (this.clusterAreaDisplay === 'hover') {
        cluster.areaGraphic.show();
        var areaDisplay = fx.animateTransform({
          duration: 300,
          shape: cluster.areaGraphic.getShape(),
          transform: [{
            name: "scaleAt",
            start: [0, 0, center.x, center.y],
            end: [1, 1, center.x, center.y]
          }],
          onEnd: dojo.partial(this._animationEnd, this)
        });
        scaleAnims.push(areaDisplay);
      }
 
      var scaleUp = fx.animateTransform({
        duration: 400,
        shape: groupShape,
        transform: [{
          name: "scaleAt",
          start: [1, 1, center.x, center.y],
          end: [1.3, 1.3, center.x, center.y]
        }],
        onEnd: dojo.partial(this._animationEnd, this)
      });
 
      scaleAnims.push(scaleUp);
 
      this._playAnimations(scaleAnims, this.animationMultipleType.combine);
 
      //Add applicable flare graphics
 
      //array to hold the flare object data
      this.flareObjects = [];
 
      //check if we need to create flares for the cluster
      var singleFlares = (cluster.singles && cluster.singles.length > 0) && (cluster.clusterCount <= this.displaySingleFlaresAtCount);
      var subTypeFlares = !singleFlares && (this.displaySubTypeFlares && this.subTypeFlareProperty && (cluster.subTypeCounts && cluster.subTypeCounts.length > 0));
 
      if (!singleFlares && !subTypeFlares) {
        return;
      }
 
      //create and add a graphic to represent the flare circle
      var bbox = graphicShape.getBoundingBox();
      var radius = 8;
      var buffer = 4;
 
      var flareSymbol = new SimpleMarkerSymbol()
        .setStyle(SimpleMarkerSymbol.STYLE_CIRCLE)
        .setSize(radius * 2);
 
      //create a transparent circle that contains the boundary of the flares, this is to make sure the mouse events don't fire moving in between flares
      var conCircleRadius = (center.x - (bbox.x - radius - buffer)) + radius; //get the radius of the circle to contain everything
      var containerCircle = groupShape.createCircle({
        cx: center.x,
        cy: +center.y + 3,
        r: conCircleRadius
      })
        //.setStroke({ width: 1, color: "000" })
        .setFill(new Color([0, 0, 0, 0]));
      containerCircle.rawNode.setAttribute("class", "flare-object cluster-object");
 
      //array to hold the animations for displaying flares
      var stAnims = [];
 
      if (singleFlares) {
        for (var i = 0, len = cluster.singles.length; i < len; i++) {
          delete cluster.singles[i].graphic;
          this.flareObjects.push({
            tooltipText: cluster.singles[i][this.singleFlareTooltipProperty],
            flareText: "",
            color: this.flareColor,
            singleData: cluster.singles[i],
            strokeWidth: 2
          });
        }
      } else if (subTypeFlares) {
 
        //sort sub types by highest count first
        var subTypes = cluster.subTypeCounts.sort(function (a, b) {
          return b.count - a.count;
        });
 
        for (i = 0, len = subTypes.length; i < len; i++) {
          this.flareObjects.push({
            tooltipText: subTypes[i].count + " - " + subTypes[i].name,
            flareText: subTypes[i].count,
            color: this.flareColor,
            strokeWidth: 1
          });
        }
      }
 
      //if there are more flare objects to create that the maxFlareCount and this is a one of those - create a summary flare that contains '...' as the text and make this one part of it
      var willContainSummaryFlare = this.flareObjects.length > this.maxFlareCount;
      var flareCount = willContainSummaryFlare ? this.maxFlareCount : this.flareObjects.length;
 
      //get the surface translate values if any
      var surfaceTranslate = this._getSurfaceTranslate();
 
      //if there's an even amount of flares, position the first flare to the left, minus 180 from degree to do this.
      //for an add amount position the first flare on top, -90 to do this. Looks more symmetrical this way.
      var degreeVariance = (flareCount % 2 === 0) ? -180 : -90;
      for (i = 0, len = flareCount; i < len; i++) {
 
        //exit if we've hit the maxFlareCount - a summary would have been created on the last one
        if (i >= this.maxFlareCount) {
          break;
        }
 
        var fo = this.flareObjects[i];
 
        //Do a couple of things differently if this is a summary flare or not
        var tooltipText = "";
        var isSummaryFlare = willContainSummaryFlare && i >= this.maxFlareCount - 1;
        if (isSummaryFlare) {
          fo.color = this.flareColor;
          fo.isSummaryFlare = true;
 
          //multiline tooltip for summary flares, ie: greater than this.maxFlareCount flares per cluster
          for (var j = this.maxFlareCount - 1, jlen = this.flareObjects.length; j < jlen; j++) {
            tooltipText += j > (this.maxFlareCount - 1) ? "\n" : "";
            tooltipText += this.flareObjects[j].tooltipText;
          }
        } else {
          tooltipText = fo.tooltipText;
        }
 
        //get the position of the flare to be placed around the container circle.
        var degree = parseInt(((360 / len) * i).toFixed());
        degree = degree + degreeVariance;
 
        var radian = degree * (Math.PI / 180);
        fo.degree = degree;
        fo.radius = radius;
        fo.center = {
          x: center.x + (conCircleRadius - radius) * Math.cos(radian),
          y: center.y + (conCircleRadius - radius) * Math.sin(radian)
        };
 
        //create a group to hold the flare objects
        var flareGroup = groupShape.createGroup();
 
        //add a graphic for the flare
        var sym = lang.clone(flareSymbol);
        sym.setColor(fo.color).setOutline(new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, this.textSymbol.color, fo.strokeWidth));
 
        //get the map point from the flare group center
        var matrix = flareGroup.rawNode.getScreenCTM();
        var pt = this.surface.rawNode.createSVGPoint();
        pt.x = fo.center.x;
        pt.y = fo.center.y;
        var screenPoint = pt.matrixTransform(matrix);
 
        //ScreenPoint needs to be relative to the top-left corner of the map control.
        //The matrixTransform on pt gives us a point based on the screen coordinate system.
        //Therefore if the map has a top offset applied to it the fo object will appear in
        //an incorrect spot on the map.  We must apply the offset to both the x and y points
        //to ensure the point is relative to the map control.
        //As of v3.18 also apply need to apply the surface translate values that may have been created by the api during panning.
        var offsets = this.surface.rawNode.getBoundingClientRect();
        var sp = new ScreenPoint(screenPoint.x - offsets.left + surfaceTranslate.x, screenPoint.y - offsets.top + surfaceTranslate.y);
        fo.mapPoint = this.map.toMap(sp);
 
        var attributes = fo.singleData ? lang.clone(fo.singleData) : {};
        attributes.isFlare = true;
        var flareGraphic = new Graphic(fo.mapPoint, sym, attributes, null);
        this.add(flareGraphic);
        var flareCircle = flareGraphic.getShape();
        if (!flareCircle) {
          return;
        }
        flareGroup.rawNode.appendChild(flareCircle.rawNode);
 
        if (fo.flareText) {
          //if displaying text in the flare,
          flareGroup.flareText = {
            location: {
              x: fo.center.x,
              y: fo.center.y + (radius / 2 - 1)
            },
            text: !isSummaryFlare ? fo.flareText : "...",
            textSize: !isSummaryFlare ? 7 : 10
          };
        }
 
        flareGroup.setTransform({
          xx: 0,
          yy: 0
        }); //scale to 0 to start with
        flareGroup.rawNode.setAttribute("class", "flare-object cluster-object");
        flareCircle.rawNode.setAttribute("class", "flare-graphic cluster-object");
        flareGroup.rawNode.setAttribute("data-tooltip", tooltipText);
 
        //add an animation to display the flare
        var anim = fx.animateTransform({
          duration: 50,
          shape: flareGroup,
          transform: [{
            name: "scaleAt",
            start: [0, 0, fo.center.x, fo.center.y],
            end: [1, 1, fo.center.x, fo.center.y]
          }],
          onEnd: dojo.partial(this._animationEnd, this)
        });
 
        stAnims.push(anim);
 
        flareGroup.rawNode.setAttribute("data-center-x", fo.center.x);
        flareGroup.rawNode.setAttribute("data-center-y", fo.center.y);
        fo.flareGroupShape = flareGroup;
      }
 
      this._playAnimations(stAnims, this.animationMultipleType.chain);
 
    },
 
    _showFlareDetail: function (graphic) {
      var flareObject = this._getFlareFromGraphic(graphic);
 
      if (this.activeFlareObject && flareObject !== this.activeFlareObject) {
        this._hideFlareDetail();
      }
 
      this.activeFlareObject = flareObject;
      this._createTooltip(flareObject.flareGroupShape);
 
    },
 
    _getInfoWindowAnchor: function (degree) {
      //set the anchor based on the degree, so the cluster is not covered by the info window
      if (degree === -180) {
        return "left";
      } else if (degree > -10 && degree < 10) {
        return "right";
      } else if (degree > -260 && degree < -170) {
        return "left";
      } else if (degree <= -90) {
        return "top-left";
      } else if (degree > -90 && degree <= 0) {
        return "top-right";
      } else if (degree > 0 && degree <= 90) {
        return "bottom-right";
      } else {
        return "bottom-left";
      }
    },
 
    _hideFlareDetail: function () {
 
      if (!this.activeFlareObject) {
        return;
      }
 
      var flareObject = this.activeFlareObject;
      this._destroyTooltip(flareObject.flareGroupShape);
      this.activeFlareObject = null;
 
    },
 
    _clearActiveCluster: function (e) {
 
      if (!this.activeCluster) {
        return;
      }
      if (e) {
        var currentElement = e.toElement || e.relatedTarget;
        if (currentElement && (currentElement.parentElement === this.map.infoWindow.domNode || (currentElement.parentElement && currentElement.parentElement.parentElement === this.map.infoWindow.domNode))) {
          return;
        }
      }
 
      if (this.map.infoWindow.cluster) {
        this.map.infoWindow.hide();
      }
 
      var cluster = this.activeCluster;
      this._hideFlareDetail();
 
      var groupShape = cluster.groupShape;
      var graphicShape = cluster.graphicShape;
 
      var center = this._getShapeCenter(graphicShape);
 
      var scaleAnims = [];
      if (this.clusterAreaDisplay === 'hover') {
        var areaHide = fx.animateTransform({
          duration: 600,
          shape: cluster.areaGraphic.getShape(),
          transform: [{
            name: "scaleAt",
            start: [1, 1, center.x, center.y],
            end: [0, 0, center.x, center.y]
          }],
          onEnd: dojo.partial(this._animationEnd, this)
        });
 
        scaleAnims.push(areaHide);
      }
 
      var scaleDown = fx.animateTransform({
        duration: 400,
        shape: groupShape,
        transform: [{
          name: "scaleAt",
          start: [1.3, 1.3, center.x, center.y],
          end: [1, 1, center.x, center.y]
        }],
        onEnd: dojo.partial(this._animationEnd, this)
      });
 
      scaleAnims.push(scaleDown);
 
      this._playAnimations(scaleAnims, this.animationMultipleType.combine);
 
      //destroy any flares
      for (var i = 0, len = this.graphics.length; i < len; i++) {
        if (this.graphics[i].attributes.isFlare) {
          this.remove(this.graphics[i]);
          len--;
          i--;
        }
      }
      dojo.query(".flare-object", groupShape.rawNode).forEach(dojo.destroy);
      this.activeCluster = null;
    },
 
    _createTooltip: function (shape) {
 
      var tooltipLength = dojo.query(".tooltip-text", shape.rawNode).length;
      if (tooltipLength > 0) {
        return;
      }
 
      //get the text from the data-tooltip attribute of the shape object
      var text = shape.rawNode.getAttribute("data-tooltip");
      if (!text) {
        console.log("no data-tooltip attribute on element");
        return;
      }
 
      //split on /n character that should be in tooltip to signify multiple lines
      var lines = text.split("\n");
 
      //read the center positions from the shape, attributes must be set on whatever node is being passed in. Calculating from getboundingBox wasn't working for some reason
      var xPos = parseInt(shape.rawNode.getAttribute("data-center-x"));
      var yPos = parseInt(shape.rawNode.getAttribute("data-center-y")) + 18; //align underneath, could be changed to be wherever
 
      //create a group to hold the tooltip elements
      var tooltipGroup = shape.createGroup({
        x: xPos,
        y: yPos
      });
      tooltipGroup.rawNode.setAttribute("class", "tooltip-text");
 
      var textShapes = [];
      for (var i = 0, len = lines.length; i < len; i++) {//聚合字体
        var textShape = tooltipGroup.createText({
          x: xPos,
          y: yPos + (i * 10),
          text: lines[i],
          align: 'middle'
        })
          .setFill("#000")
          .setFont({
            size: 8,//聚合字体大小//没效果
            family: this.textSymbol.font.family,
            weight: this.textSymbol.font.weight
          });
        textShapes.push(textShape);
        textShape.rawNode.setAttribute("pointer-events", "none");
      }
 
      var rectPadding = 2;
      var textBox = tooltipGroup.getBoundingBox();
      var rectShape = tooltipGroup.createRect({
        x: textBox.x - rectPadding,
        y: textBox.y - rectPadding,
        width: textBox.width + (rectPadding * 2),
        height: textBox.height + (rectPadding * 2),
        r: 0
      })
        .setFill(new Color([255, 255, 255, 0.9]))
        .setStroke({
          color: "#000",
          width: 0.5
        });
      rectShape.rawNode.setAttribute("pointer-events", "none");
 
      shape.moveToFront();
      for (i = 0, len = textShapes.length; i < len; i++) {
        textShapes[i].moveToFront();
      }
 
    },
 
    _destroyTooltip: function (shape) {
      dojo.query(".tooltip-text", shape.rawNode).forEach(dojo.destroy);
    },
 
    _removeCluster: function (cluster) {
      //remove the cluster completely
      for (var i = 0, len = this.clusters.length; i < len; i++) {
        if (this.clusters[i] === cluster) {
          this.clusters.splice(i, 1);
          i--;
          len--;
        }
      }
      this.remove(cluster.graphic);
      dojo.destroy(cluster.groupShape.rawNode);
    },
 
    //#endregion
 
    //#region helper methods
 
    _getGraphicFromObject: function (obj) {
      //return the graphic from the obj which could be a single or cluster object
      for (var i = 0, len = this.graphics.length; i < len; i++) {
        var g = this.graphics[i];
        if (g.attributes[this.xPropertyName] === obj[this.xPropertyName] && g.attributes[this.yPropertyName] === obj[this.yPropertyName]) {
          return g;
        }
      }
      return null;
    },
 
    _getClusterFromGraphic: function (graphic) {
      //return the obj which could be a single or cluster object, based on the graphic
      for (var i = 0, len = this.clusters.length; i < len; i++) {
        var cl = this.clusters[i];
        if (cl.graphic === graphic || (graphic.attributes.x === cl.x && graphic.attributes.y === cl.y)) {
          cl.graphic = graphic;
          return cl;
        }
      }
      return null;
    },
 
    _getClusterFromGroupNode: function (groupNode) {
      for (var i = 0, len = this.clusters.length; i < len; i++) {
        if (this.clusters[i].groupShape.rawNode === groupNode) {
          return this.clusters[i];
        }
      }
    },
 
    _getFlareFromGraphic: function (graphic) {
      //return the obj which could be a single or cluster object, based on the graphic
      for (var i = 0, len = this.flareObjects.length; i < len; i++) {
        var fl = this.flareObjects[i];
        if (fl.singleData && (fl.singleData[this.xPropertyName] === graphic.attributes[this.xPropertyName] && fl.singleData[this.yPropertyName] === graphic.attributes[this.yPropertyName]) &&
          (this.idPropertyName === null || fl.singleData[this.idPropertyName] === graphic.attributes[this.idPropertyName])) {
          return fl;
        }
 
        if (graphic.geometry.x === fl.mapPoint.x && graphic.geometry.y === fl.mapPoint.y) {
          return fl;
        }
      }
      return null;
    },
 
    _getShapeCenter: function (shape) {
      var bbox = shape.getBoundingBox();
      x = bbox.x + bbox.width / 2;
      y = bbox.y + bbox.height / 2
      return {
        x: x,
        y: y
      };
    },
 
    _getSurfaceTranslate: function () {
      var translate = {
        x: 0,
        y: 0
      };
 
      //check if we could find a translate style property on the surface.
      if (!this.surface || !this.surface.rawNode || !this.surface.rawNode.style.transform || this.surface.rawNode.style.transform.indexOf("translate") === -1) return translate;
 
      //parse the values from the translate string. Using some basic string manipulation, some regex guru could tidy this up I would think.
      var transform = this.surface.rawNode.style.transform;
      transform = transform.replace("translate(", "").replace(")", "");
      var vals = transform.split(",");
      if (vals.length !== 2) return translate;
      vals[0] = parseInt(vals[0].replace("px", ""));
      vals[1] = parseInt(vals[1].replace("px", ""));
      translate.x = vals[0];
      translate.y = vals[1];
      return translate;
    },
 
    _animationEnd: function (layer) {
      //scope: 'this' is the animation that triggered the event, 'layer' is the flare cluster layer object instance
 
      //IE10 and below Fix - have to manually set transform back to 1 on elements. They don't seem to appear all of the time again after beign animated back to
      //a scale of 1. IE sucks.
      dojo.query("> *", this.shape.rawNode).forEach(function (elem) {
        if (!elem.__gfxObject__) return;
        //put this in a slight timeout, otherwise the display can get a tiny bit jittery.
        setTimeout(function () {
          if (elem.__gfxObject__) {
            elem.__gfxObject__.setTransform({
              xx: 1,
              yy: 1
            });
          }
        }, 50);
      });
 
      //Here's a hack for Edge. Good to see there's no need to do special hacks for MS browsers anymore. WTF.
      //Have to add the flare text after the flare group animation otherwise Edge just reloads the page and dies for some reason?
      if (this.shape.flareText) {
        var flareText = this.shape.createText({
          x: this.shape.flareText.location.x,
          y: this.shape.flareText.location.y,
          text: this.shape.flareText.text,
          align: 'middle'
        })
          .setFill(layer.textSymbol.color)
          .setFont({
            size: this.shape.flareText.textSize,
            family: layer.textSymbol.font.family,
            weight: layer.textSymbol.font.weight
          });
 
        flareText.rawNode.setAttribute("class", "flare-text-counts");
        flareText.rawNode.setAttribute("pointer-events", "none"); //remove pointer events from text
        flareText.moveToFront();
      }
 
      for (var i = 0, len = layer.animationsRunning.length; i < len; i++) {
        if (layer.animationsRunning[i] === this) {
          layer.animationsRunning.splice(i, 1);
          return;
        }
      }
 
    },
 
    _playAnimations: function (animations, type) {
      if (type === this.animationMultipleType.combine) {
        coreFx.combine(animations).play();
      } else if (type === this.animationMultipleType.chain) {
        coreFx.chain(animations).play();
      } else {
        for (var i = 0, len = animations.length; i < len; i++) {
          animations[i].play();
        }
      }
 
      this.animationsRunning = this.animationsRunning.concat(animations);
    },
 
    _stopAnimations: function () {
      for (var i = 0, len = this.animationsRunning.length; i < len; i++) {
        this.animationsRunning[i].stop();
      }
      this.animationsRunning = [];
    },
 
    _clickOpenOnclick: function (e, und, indexControl) {
      this.onClick(e, und, indexControl)
    },
    _setUserState: function (state) {
      // console.log(state)
      this.userState = state
    }
    //#endregion
  });
});