egovamap 0.14.6 → 0.15.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -386,6 +386,7 @@ var egovaBI = function(globeMap, gisMap, mapType){
386
386
  showParts(data);
387
387
  } else {
388
388
  const layerID = queryParam.phyLayerIDs;
389
+ const layerName = queryParam.layerName;
389
390
  const keyField = null;
390
391
  const keyValue = null;
391
392
  const clearMap = queryParam.clearMap || true;
@@ -402,13 +403,17 @@ var egovaBI = function(globeMap, gisMap, mapType){
402
403
  type: "simple-line", // autocasts as new SimpleLineSymbol()
403
404
  color: inStyle.color || "lightblue",
404
405
  width: inStyle.width || "2px",
405
- style: inStyle.style || "solid"
406
+ style: inStyle.style || "solid",
407
+ cap: inStyle.cap || "round",
408
+ join: inStyle.join || "round",
406
409
  };
407
410
  hStyle = {
408
411
  type: "simple-line", // autocasts as new SimpleLineSymbol()
409
412
  color: inHStyle.color || "lightblue",
410
- width: inHStyle.width || "2px",
411
- style: inHStyle.style || "solid"
413
+ width: inHStyle.width || inStyle.width || "2px",
414
+ style: inHStyle.style || inStyle.style || "solid",
415
+ cap: inHStyle.cap || inStyle.cap || "round",
416
+ join: inHStyle.join || inStyle.join || "round",
412
417
  };
413
418
  } else if (geomType == 3) {
414
419
  style = {
@@ -416,17 +421,23 @@ var egovaBI = function(globeMap, gisMap, mapType){
416
421
  color: inStyle.color || [51, 51, 204, 0.9],
417
422
  style: inStyle.style || "solid",
418
423
  outline: { // autocasts as new SimpleLineSymbol()
419
- color: inStyle.outlineColor || "white",
420
- width: inStyle.outlineWidth || "1px"
424
+ color: inStyle.outlineColor || "lightblue",
425
+ width: inStyle.outlineWidth || "1px",
426
+ style: inStyle.outlineStyle || "solid",
427
+ cap: inStyle.outlineCap || "round",
428
+ join: inStyle.outlineJoin || "round",
421
429
  }
422
430
  };
423
431
  hStyle = {
424
432
  type: "simple-fill", // autocasts as new SimpleFillSymbol()
425
433
  color: inHStyle.color || [51, 51, 204, 0.9],
426
- style: inHStyle.style || "solid",
434
+ style: inHStyle.style || inStyle.style || "solid",
427
435
  outline: { // autocasts as new SimpleLineSymbol()
428
- color: inHStyle.outlineColor || "white",
429
- width: inHStyle.outlineWidth || "1px"
436
+ color: inHStyle.outlineColor || "lightblue",
437
+ width: inHStyle.outlineWidth || inStyle.outlineWidth || "1px",
438
+ style: inHStyle.outlineStyle || inStyle.outlineStyle || "solid",
439
+ cap: inHStyle.outlineCap || inStyle.outlineCap || "round",
440
+ join: inHStyle.outlineJoin || inStyle.outlineJoin || "round",
430
441
  }
431
442
  };
432
443
  }
@@ -436,8 +447,11 @@ var egovaBI = function(globeMap, gisMap, mapType){
436
447
  const labelstyle = null;
437
448
  const geometry = null;
438
449
  const where = queryParam.where || "1=1";
450
+ const opts = {
451
+ layerId: layerName
452
+ };
439
453
 
440
- let param = [layerID, keyField, keyValue, clearMap, style, hStyle, bZoom, randomColor, labelField, labelstyle, geometry, where];
454
+ let param = [layerID, keyField, keyValue, clearMap, style, hStyle, bZoom, randomColor, labelField, labelstyle, geometry, where, null, null, opts];
441
455
  if (globeMap) {
442
456
  gisMap.locateFeatureByIDs(...param);
443
457
  } else if (gisMap) {
@@ -483,10 +497,10 @@ var egovaBI = function(globeMap, gisMap, mapType){
483
497
  }
484
498
  }
485
499
 
486
- if(data) {
500
+ if (data) {
487
501
  execOperation(data);
488
502
  } else {
489
- if(!options.idbSetting.usageID){return}
503
+ if (!options.idbSetting.usageID) { return }
490
504
 
491
505
  let storeName = !!globeMap ? "usageID" : "usage2D" + "_" + options.idbSetting.usageID;
492
506
  let queryFromGIS = () => {
@@ -496,33 +510,33 @@ var egovaBI = function(globeMap, gisMap, mapType){
496
510
  where: filterString,
497
511
  geometry: '',
498
512
  outGeometry: true,
499
- options:{
500
- originalData:true
513
+ options: {
514
+ originalData: true
501
515
  }
502
516
  }
503
517
  let queryCallback = function (featureInfos) {
504
518
  execOperation(featureInfos);
505
519
  }
506
- if(gisMap) {
507
- gisMap.queryFeature(queryParam, queryCallback)
520
+ if (gisMap) {
521
+ gisMap.queryFeature(queryParam, queryCallback)
508
522
  }
509
523
  }
510
524
 
511
- if(!options.idbSetting.enabled) {
525
+ if (!options.idbSetting.enabled) {
512
526
  // 直接查询
513
527
  queryFromGIS()
514
528
  } else {
515
529
  // 查询是否存在表
516
530
  checkObjectStore(storeName)
517
- .then(function(hasObjStore) {
518
- if(hasObjStore) {
519
- // 如果有,读取本地
520
- execOperation();
521
- } else {
522
- // 如果没有,查询queryFeature
523
- queryFromGIS()
524
- }
525
- })
531
+ .then(function (hasObjStore) {
532
+ if (hasObjStore) {
533
+ // 如果有,读取本地
534
+ execOperation();
535
+ } else {
536
+ // 如果没有,查询queryFeature
537
+ queryFromGIS()
538
+ }
539
+ })
526
540
  }
527
541
  }
528
542
  }
@@ -514,8 +514,14 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
514
514
  if (scene == null)
515
515
  return;
516
516
  // 移除监听
517
- that.removeEventBind("showMultiObjectCurrentPositionClick"+tagName);
518
- that.removeEventBind("showMultiObjectCurrentPositionMouseover"+tagName);
517
+ var clickBackName = "showMultiObjectCurrentPositionClick";
518
+ var mouseOverBackName = "showMultiObjectCurrentPositionMouseover";
519
+ if(tagName){
520
+ clickBackName += tagName;
521
+ mouseOverBackName += tagName;
522
+ }
523
+ that.removeEventBind(clickBackName);
524
+ that.removeEventBind(mouseOverBackName);
519
525
  var args =[];
520
526
  var FuncList = [];
521
527
  for(var i = 0;i<arguments.length;i++){
@@ -526,12 +532,12 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
526
532
  }
527
533
  }
528
534
  if (FuncList[0] instanceof Function) {
529
- that.bindEvent("showMultiObjectCurrentPositionClick"+tagName, function(evt) {
535
+ that.bindEvent(clickBackName, function(evt) {
530
536
  FuncList[0](evt.args);
531
537
  });
532
538
  }
533
539
  if (FuncList[1] instanceof Function) {
534
- that.bindEvent("showMultiObjectCurrentPositionMouseover"+tagName, function(evt) {
540
+ that.bindEvent(mouseOverBackName, function(evt) {
535
541
  FuncList[1](evt.args);
536
542
  });
537
543
  }
@@ -1132,6 +1138,14 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
1132
1138
  return scene.fire(msgPrefix + ":getPolygonArea", {args: [geometry]},parentScene);
1133
1139
  }
1134
1140
 
1141
+ that.intersectGeometry = function (polygon1, polygon2) {
1142
+ return scene.fire(msgPrefix + ":intersectGeometry", {args: [polygon1, polygon2]}, parentScene);
1143
+ }
1144
+
1145
+ that.getCenterPoint = function (polygon) {
1146
+ return scene.fire(msgPrefix + ":getCenterPoint", {args: [polygon]}, parentScene);
1147
+ }
1148
+
1135
1149
  /* 根据PointID定位空中全景 */
1136
1150
  that.mmsAirPanoLocateByID = function(pointID) {
1137
1151
  if(mmsMap && mmsMap.mmsLoaded) {
@@ -1821,6 +1821,11 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig, co
1821
1821
  };
1822
1822
  that.callMap('getRegion', params, cb);
1823
1823
  }
1824
+
1825
+ that.getMapConfig = function(key, callback){
1826
+ that.callMap('getMapConfig', key, callback);
1827
+ }
1828
+
1824
1829
  that.init();
1825
1830
  }
1826
1831
 
@@ -2587,6 +2587,26 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
2587
2587
  return gisMap.getPolygonArea.apply(this, arguments);
2588
2588
  }
2589
2589
 
2590
+ /**
2591
+ * 计算面的相交部分
2592
+ */
2593
+ that.intersectGeometry = function(polygon1, polygon2) {
2594
+ if (scene == null)
2595
+ return;
2596
+ if (gisMap != null)
2597
+ return gisMap.intersectGeometry.apply(this, arguments);
2598
+ }
2599
+
2600
+ /**
2601
+ * 获取面的中心点
2602
+ */
2603
+ that.getCenterPoint = function(polygon) {
2604
+ if (scene == null)
2605
+ return;
2606
+ if (gisMap != null)
2607
+ return gisMap.getCenterPoint.apply(this, arguments);
2608
+ }
2609
+
2590
2610
  /* 切换地图类型 */
2591
2611
  that.changeControlParam = function (type, param) {
2592
2612
  if (scene == null)
@@ -3692,6 +3712,15 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
3692
3712
  }
3693
3713
  }
3694
3714
 
3715
+ //获取GIS配置
3716
+ that.getMapConfig = function(key, callback){
3717
+ if (scene == null)
3718
+ return;
3719
+ if (gisMap != null) {
3720
+ gisMap.getMapConfig.apply(this, arguments);
3721
+ }
3722
+ }
3723
+
3695
3724
 
3696
3725
  that.initMap(containerID, callback, mapType, mapConfig);
3697
3726
 
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.14.6",
3
+ "version": "0.15.4",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "version:minor": "npm version minor -m \"[A]发布 v%s\"",
8
8
  "version:patch": "npm version patch -m \"[A]发布修复版本 v%s\"",
9
9
  "pub": "npm publish --registry https://registry.npmjs.org/",
10
- "postpublish": "git push && git push --tags"
10
+ "postpublish": "git push && git push --tags",
11
+ "start": "parcel test/test.html"
11
12
  },
12
13
  "author": "egova",
13
14
  "license": "MIT",
@@ -16,5 +17,8 @@
16
17
  },
17
18
  "engines": {
18
19
  "node": ">=12.13"
20
+ },
21
+ "devDependencies": {
22
+ "parcel": "^2.3.1"
19
23
  }
20
24
  }
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="JAVA_MODULE" version="4">
3
- <component name="NewModuleRootManager" inherit-compiler-output="true">
4
- <exclude-output />
5
- <content url="file://$MODULE_DIR$" />
6
- <orderEntry type="inheritedJdk" />
7
- <orderEntry type="sourceFolder" forTests="false" />
8
- </component>
9
- </module>
package/.idea/misc.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="JavaScriptSettings">
4
- <option name="languageLevel" value="ES6" />
5
- </component>
6
- </project>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/egovamap-npm.iml" filepath="$PROJECT_DIR$/.idea/egovamap-npm.iml" />
6
- </modules>
7
- </component>
8
- </project>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,237 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="b9682ea7-e404-4d9e-8895-5e80bc8cafd2" name="Default" comment="" />
5
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
6
- <option name="TRACKING_ENABLED" value="true" />
7
- <option name="SHOW_DIALOG" value="false" />
8
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
9
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
10
- <option name="LAST_RESOLUTION" value="IGNORE" />
11
- </component>
12
- <component name="FileEditorManager">
13
- <leaf>
14
- <file leaf-file-name="egovamap.js" pinned="false" current-in-tab="true">
15
- <entry file="file://$PROJECT_DIR$/egovamap/egovamap.js">
16
- <provider selected="true" editor-type-id="text-editor">
17
- <state relative-caret-position="749">
18
- <caret line="1694" lean-forward="true" selection-start-line="1694" selection-end-line="1694" />
19
- <folding>
20
- <element signature="e#0#41#0" expanded="true" />
21
- </folding>
22
- </state>
23
- </provider>
24
- </entry>
25
- </file>
26
- </leaf>
27
- </component>
28
- <component name="Git.Settings">
29
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
30
- </component>
31
- <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
32
- <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
33
- <component name="JsGulpfileManager">
34
- <detection-done>true</detection-done>
35
- <sorting>DEFINITION_ORDER</sorting>
36
- </component>
37
- <component name="MavenProjectNavigator">
38
- <treeState>
39
- <expand />
40
- <select />
41
- </treeState>
42
- </component>
43
- <component name="NodePackageJsonFileManager">
44
- <packageJsonPaths>
45
- <path value="$PROJECT_DIR$/package.json" />
46
- </packageJsonPaths>
47
- </component>
48
- <component name="ProjectFrameBounds" extendedState="6">
49
- <option name="x" value="-10" />
50
- <option name="y" value="-10" />
51
- <option name="width" value="1750" />
52
- <option name="height" value="975" />
53
- </component>
54
- <component name="ProjectView">
55
- <navigator proportions="" version="1">
56
- <foldersAlwaysOnTop value="true" />
57
- </navigator>
58
- <panes>
59
- <pane id="ProjectPane">
60
- <subPane>
61
- <expand>
62
- <path>
63
- <item name="egovamap-npm" type="b2602c69:ProjectViewProjectNode" />
64
- <item name="egovamap-npm" type="462c0819:PsiDirectoryNode" />
65
- </path>
66
- <path>
67
- <item name="egovamap-npm" type="b2602c69:ProjectViewProjectNode" />
68
- <item name="egovamap-npm" type="462c0819:PsiDirectoryNode" />
69
- <item name="egovamap" type="462c0819:PsiDirectoryNode" />
70
- </path>
71
- </expand>
72
- <select />
73
- </subPane>
74
- </pane>
75
- <pane id="PackagesPane" />
76
- <pane id="AndroidView" />
77
- <pane id="Scope" />
78
- </panes>
79
- </component>
80
- <component name="PropertiesComponent">
81
- <property name="WebServerToolWindowFactoryState" value="false" />
82
- <property name="aspect.path.notification.shown" value="true" />
83
- <property name="last_opened_file_path" value="$PROJECT_DIR$" />
84
- <property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
85
- <property name="nodejs_npm_path_reset_for_default_project" value="true" />
86
- <property name="settings.editor.selected.configurable" value="configurable.group.appearance" />
87
- </component>
88
- <component name="RunDashboard">
89
- <option name="ruleStates">
90
- <list>
91
- <RuleState>
92
- <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
93
- </RuleState>
94
- <RuleState>
95
- <option name="name" value="StatusDashboardGroupingRule" />
96
- </RuleState>
97
- </list>
98
- </option>
99
- </component>
100
- <component name="RunManager">
101
- <configuration default="true" type="Application" factoryName="Application">
102
- <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
103
- </configuration>
104
- <configuration default="true" type="JUnit" factoryName="JUnit">
105
- <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
106
- <option name="ALTERNATIVE_JRE_PATH" />
107
- <option name="PACKAGE_NAME" />
108
- <option name="MAIN_CLASS_NAME" />
109
- <option name="METHOD_NAME" />
110
- <option name="TEST_OBJECT" value="class" />
111
- <option name="VM_PARAMETERS" value="-ea" />
112
- <option name="PARAMETERS" />
113
- <option name="WORKING_DIRECTORY" value="%MODULE_WORKING_DIR%" />
114
- <option name="PASS_PARENT_ENVS" value="true" />
115
- <option name="TEST_SEARCH_SCOPE">
116
- <value defaultName="singleModule" />
117
- </option>
118
- <patterns />
119
- </configuration>
120
- <configuration default="true" type="TestNG" factoryName="TestNG">
121
- <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
122
- <option name="ALTERNATIVE_JRE_PATH" />
123
- <option name="SUITE_NAME" />
124
- <option name="PACKAGE_NAME" />
125
- <option name="MAIN_CLASS_NAME" />
126
- <option name="METHOD_NAME" />
127
- <option name="GROUP_NAME" />
128
- <option name="TEST_OBJECT" value="CLASS" />
129
- <option name="VM_PARAMETERS" value="-ea" />
130
- <option name="PARAMETERS" />
131
- <option name="WORKING_DIRECTORY" value="%MODULE_WORKING_DIR%" />
132
- <option name="OUTPUT_DIRECTORY" />
133
- <option name="PASS_PARENT_ENVS" value="true" />
134
- <option name="TEST_SEARCH_SCOPE">
135
- <value defaultName="singleModule" />
136
- </option>
137
- <option name="USE_DEFAULT_REPORTERS" value="false" />
138
- <option name="PROPERTIES_FILE" />
139
- <properties />
140
- <listeners />
141
- </configuration>
142
- </component>
143
- <component name="SvnConfiguration">
144
- <configuration />
145
- </component>
146
- <component name="TaskManager">
147
- <task active="true" id="Default" summary="Default task">
148
- <changelist id="b9682ea7-e404-4d9e-8895-5e80bc8cafd2" name="Default" comment="" />
149
- <created>1644908680682</created>
150
- <option name="number" value="Default" />
151
- <option name="presentableId" value="Default" />
152
- <updated>1644908680682</updated>
153
- <workItem from="1644908683117" duration="211000" />
154
- </task>
155
- <servers />
156
- </component>
157
- <component name="TimeTrackingManager">
158
- <option name="totallyTimeSpent" value="211000" />
159
- </component>
160
- <component name="ToolWindowManager">
161
- <frame x="-8" y="-8" width="1936" height="1056" extended-state="6" />
162
- <layout>
163
- <window_info anchor="right" id="Palette" order="3" />
164
- <window_info anchor="bottom" id="Event Log" order="9" sideWeight="0.5113941" side_tool="true" weight="0.36880466" />
165
- <window_info anchor="bottom" id="JRebel Console" order="12" sideWeight="0.42895442" side_tool="true" weight="0.39941692" />
166
- <window_info anchor="right" id="Maven Projects" order="5" visible="true" weight="0.1673774" />
167
- <window_info anchor="bottom" id="Database Changes" order="10" show_stripe_button="false" />
168
- <window_info anchor="bottom" id="JRebel Executor" order="11" weight="0.32944608" />
169
- <window_info id="Capture Tool" order="6" />
170
- <window_info id="Designer" order="2" />
171
- <window_info anchor="bottom" id="Profiler" />
172
- <window_info anchor="right" id="Database" order="6" />
173
- <window_info id="Structure" order="1" sideWeight="0.11600928" side_tool="true" weight="0.34986594" />
174
- <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
175
- <window_info id="UI Designer" order="4" />
176
- <window_info anchor="bottom" id="Debug" order="4" sideWeight="0.4886059" weight="0.37026238" />
177
- <window_info anchor="bottom" id="TODO" order="7" sideWeight="0.49932975" weight="0.32944608" />
178
- <window_info anchor="right" id="Palette&#9;" order="8" />
179
- <window_info id="Image Layers" order="7" />
180
- <window_info anchor="right" id="Capture Analysis" order="4" />
181
- <window_info anchor="bottom" id="Version Control" order="16" />
182
- <window_info anchor="bottom" id="Run" order="3" sideWeight="0.56769437" weight="0.32944608" />
183
- <window_info anchor="bottom" id="Terminal" order="8" sideWeight="0.49932975" weight="0.35276967" />
184
- <window_info active="true" content_ui="combo" id="Project" order="0" sideWeight="0.5571587" visible="true" weight="0.23614073" />
185
- <window_info id="JRebel" order="3" sideWeight="0.4428413" side_tool="true" visible="true" weight="0.23614073" />
186
- <window_info anchor="right" id="Theme Preview" order="7" />
187
- <window_info id="Favorites" order="5" side_tool="true" />
188
- <window_info anchor="bottom" id="Inspection" order="6" weight="0.4" />
189
- <window_info anchor="bottom" id="Cvs" order="5" weight="0.25" />
190
- <window_info anchor="bottom" id="Java Enterprise" order="18" sideWeight="0.49932975" weight="0.32944608" />
191
- <window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
192
- <window_info anchor="bottom" id="Problems" order="15" sideWeight="0.49932975" weight="0.32944608" />
193
- <window_info anchor="bottom" id="TypeScript" order="0" />
194
- <window_info anchor="bottom" id="Messages" order="14" sideWeight="0.4953083" weight="0.32944608" />
195
- <window_info anchor="bottom" id="Application Servers" order="13" weight="0.32944608" />
196
- <window_info anchor="bottom" id="Spring" order="17" sideWeight="0.49932975" weight="0.32944608" />
197
- <window_info anchor="bottom" id="Find" order="2" weight="0.329927" />
198
- <window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
199
- <window_info id="Web" order="8" side_tool="true" />
200
- <window_info anchor="bottom" id="Message" order="1" />
201
- </layout>
202
- </component>
203
- <component name="TypeScriptGeneratedFilesManager">
204
- <option name="version" value="1" />
205
- </component>
206
- <component name="VcsContentAnnotationSettings">
207
- <option name="myLimit" value="2678400000" />
208
- </component>
209
- <component name="editorHistoryManager">
210
- <entry file="file://$PROJECT_DIR$/egovamap/egovamap.js">
211
- <provider selected="true" editor-type-id="text-editor">
212
- <state relative-caret-position="749">
213
- <caret line="1694" lean-forward="true" selection-start-line="1694" selection-end-line="1694" />
214
- <folding>
215
- <element signature="e#0#41#0" expanded="true" />
216
- </folding>
217
- </state>
218
- </provider>
219
- </entry>
220
- </component>
221
- <component name="masterDetails">
222
- <states>
223
- <state key="ProjectJDKs.UI">
224
- <settings>
225
- <last-edited>1.6</last-edited>
226
- <splitter-proportions>
227
- <option name="proportions">
228
- <list>
229
- <option value="0.2" />
230
- </list>
231
- </option>
232
- </splitter-proportions>
233
- </settings>
234
- </state>
235
- </states>
236
- </component>
237
- </project>