├── .gitattributes ├── .gitignore └── eQuery ├── .jshintignore ├── .jshintrc ├── config-readme.txt ├── config.json ├── configs ├── About │ ├── config_About.json │ └── icon_About.png ├── BasemapGallery │ ├── config_Basemap Gallery.json │ ├── thumbnailUrl.png │ ├── thumbnailUrl_1.png │ └── thumbnailUrl_2.png ├── Enhanced Query │ └── config_Enhanced Query.json ├── Pictometry │ └── config_Pictometry.json ├── Screenshot │ ├── config_About.json │ └── icon_About.png ├── StreetView │ └── config_Google Street View.json └── loading │ ├── images │ ├── predefined_loading_1.gif │ ├── predefined_loading_2.gif │ ├── predefined_loading_3.gif │ └── predefined_loading_4.gif │ └── loading.css ├── dynamic-modules ├── package.js ├── package.json ├── postload.js └── preload.js ├── env.js ├── images ├── app-logo.png ├── app-name.png ├── hint.png ├── loading.gif ├── notes.png ├── shortcut.png └── thumbnail.png ├── index.html ├── init.js ├── jimu.js ├── BaseWidget.js ├── BaseWidgetFrame.js ├── BaseWidgetPanel.js ├── BaseWidgetSetting.js ├── ConfigLoader.js ├── ConfigManager.js ├── DataManager.js ├── InfoWindowAction.js ├── LayerInfos │ ├── LayerInfo.js │ ├── LayerInfoFactory.js │ ├── LayerInfoForCollection.js │ ├── LayerInfoForDefault.js │ ├── LayerInfoForDefaultDynamic.js │ ├── LayerInfoForDefaultImage.js │ ├── LayerInfoForDefaultService.js │ ├── LayerInfoForDefaultStream.js │ ├── LayerInfoForDefaultTable.js │ ├── LayerInfoForDefaultTile.js │ ├── LayerInfoForDefaultWMS.js │ ├── LayerInfoForGeoRSS.js │ ├── LayerInfoForGroup.js │ ├── LayerInfoForKML.js │ ├── LayerInfoForMapService.js │ ├── LayerInfoForWMS.js │ └── LayerInfos.js ├── LayoutManager.js ├── MapManager.js ├── OnScreenWidgetIcon.js ├── OnScreenWidgetPanel.js ├── PanelManager.js ├── PoolControllerMixin.js ├── ServiceBrowserRule.js ├── SpatialReference │ ├── cs.json │ ├── srUtils.js │ ├── transform.json │ ├── unitUtils.js │ ├── utils.js │ ├── wkid.json │ ├── wkidDetails.json │ └── wkidUtils.js ├── WidgetManager.js ├── WidgetPlaceholder.js ├── css │ ├── ColorPicker.css │ ├── dojo-override.css │ ├── images │ │ ├── add_default.png │ │ ├── add_disabled.png │ │ ├── add_hover.png │ │ ├── black_close_default.png │ │ ├── checkbox_default.png │ │ ├── checkbox_disabled.png │ │ ├── checkbox_hover.png │ │ ├── checked_default.png │ │ ├── checked_disabled.png │ │ ├── checked_hover.png │ │ ├── close_8_default.png │ │ ├── close_8_hover.png │ │ ├── close_default.png │ │ ├── close_hover.png │ │ ├── delete_default.png │ │ ├── delete_disabled.png │ │ ├── delete_hover.png │ │ ├── depressed.png │ │ ├── down_arrow_8_default.png │ │ ├── down_arrow_8_hover.png │ │ ├── down_default.png │ │ ├── down_disabled.png │ │ ├── down_hover.png │ │ ├── draw_circle.png │ │ ├── draw_ellipse.png │ │ ├── draw_extent.png │ │ ├── draw_freehand_polygon.png │ │ ├── draw_freehand_polyline.png │ │ ├── draw_line.png │ │ ├── draw_point.png │ │ ├── draw_polygon.png │ │ ├── draw_polyline.png │ │ ├── draw_text.png │ │ ├── draw_triangle.png │ │ ├── edit_default.png │ │ ├── edit_disabled.png │ │ ├── edit_hover.png │ │ ├── error_default.png │ │ ├── fold_down.png │ │ ├── fold_up.png │ │ ├── folder_close_default.png │ │ ├── folder_close_hover.png │ │ ├── folder_open_default.png │ │ ├── folder_open_hover.png │ │ ├── group_layer1.png │ │ ├── group_layer2.png │ │ ├── image_layer.png │ │ ├── line_layer1.png │ │ ├── line_layer2.png │ │ ├── mapserver_close.png │ │ ├── mapserver_open.png │ │ ├── max.png │ │ ├── point_layer1.png │ │ ├── point_layer2.png │ │ ├── polygon_layer1.png │ │ ├── polygon_layer2.png │ │ ├── right_arrow_8_default.png │ │ ├── right_arrow_8_hover.png │ │ ├── search_default.png │ │ ├── search_disabled.png │ │ ├── search_hover.png │ │ ├── setting_default.png │ │ ├── setting_disabled.png │ │ ├── setting_hover.png │ │ ├── symbol │ │ │ ├── c1.png │ │ │ ├── c2.png │ │ │ ├── c3.png │ │ │ ├── c4.png │ │ │ ├── c5.png │ │ │ ├── c6.png │ │ │ ├── cb1.png │ │ │ ├── cb10.png │ │ │ ├── cb11.png │ │ │ ├── cb12.png │ │ │ ├── cb13.png │ │ │ ├── cb14.png │ │ │ ├── cb15.png │ │ │ ├── cb16.png │ │ │ ├── cb17.png │ │ │ ├── cb18.png │ │ │ ├── cb19.png │ │ │ ├── cb2.png │ │ │ ├── cb20.png │ │ │ ├── cb21.png │ │ │ ├── cb22.png │ │ │ ├── cb23.png │ │ │ ├── cb24.png │ │ │ ├── cb25.png │ │ │ ├── cb26.png │ │ │ ├── cb27.png │ │ │ ├── cb3.png │ │ │ ├── cb4.png │ │ │ ├── cb5.png │ │ │ ├── cb6.png │ │ │ ├── cb7.png │ │ │ ├── cb8.png │ │ │ └── cb9.png │ │ ├── table_under_line.png │ │ ├── tool.png │ │ ├── toolbox.png │ │ ├── up_default.png │ │ ├── up_disabled.png │ │ ├── up_hover.png │ │ ├── valid.png │ │ ├── validating.gif │ │ └── white_close_default.png │ ├── jimu-ie.css │ ├── jimu-theme.css │ ├── jimu.css │ ├── spacing.css │ ├── sprite.css │ └── sprite.png ├── dijit │ ├── CheckBox.js │ ├── ColorPicker.js │ ├── DrawBox.js │ ├── DropMenu.js │ ├── ExtentChooser.js │ ├── FeaturelayerChooserFromMap.js │ ├── FeaturelayerChooserFromPortal.js │ ├── FeaturelayerServiceBrowser.js │ ├── FeaturelayerServiceChooser.js │ ├── FeaturelayerSource.js │ ├── Filter.js │ ├── FilterParameters.js │ ├── GeocodeServiceBrowser.js │ ├── GeocodeServiceChooser.js │ ├── GpChooserFromPortal.js │ ├── GpServiceBrowser.js │ ├── GpServiceChooser.js │ ├── GpSource.js │ ├── ImageChooser.js │ ├── ItemSelector.js │ ├── LayerChooserFromMap.js │ ├── LayerChooserFromMapWithDropbox.js │ ├── LayerFieldChooser.js │ ├── LoadingIndicator.js │ ├── LoadingShelter.js │ ├── Message.js │ ├── Popup.js │ ├── PopupConfig.js │ ├── QRCode.js │ ├── QueryableLayerChooserFromMap.js │ ├── QueryableLayerSource.js │ ├── QueryableServiceBrowser.js │ ├── QueryableServiceChooserFromPortal.js │ ├── RadioBtn.js │ ├── RelationshipConfig.js │ ├── RendererChooser.js │ ├── Search.js │ ├── ServiceURLInput.js │ ├── SimpleTable.js │ ├── SymbolChooser.js │ ├── SymbolPicker.js │ ├── SymbolsInfo │ │ ├── 0.json │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ ├── 9.json │ │ ├── fill.json │ │ └── line.json │ ├── TabContainer.js │ ├── TabContainer3.js │ ├── TileLayoutContainer.js │ ├── URLComboBox.js │ ├── URLInput.js │ ├── ViewStack.js │ ├── _BasicServiceBrowser.js │ ├── _BasicServiceChooser.js │ ├── _BasicServiceChooserContent.js │ ├── _CropImage.js │ ├── _FeaturelayerServiceChooserContent.js │ ├── _FeaturelayerSourcePopup.js │ ├── _FilterSet.js │ ├── _GeocodeServiceChooserContent.js │ ├── _GpServiceChooserContent.js │ ├── _ItemTable.js │ ├── _QueryableLayerSourcePopup.js │ ├── _QueryableServiceChooserContent.js │ ├── _SingleFilter.js │ ├── _SingleFilterParameter.js │ ├── _Transparency.js │ ├── _Tree.js │ ├── dijit-all.js │ └── templates │ │ ├── DrawBox.html │ │ ├── FeaturelayerChooserFromPortal.html │ │ ├── FeaturelayerSource.html │ │ ├── Filter.html │ │ ├── GpChooserFromPortal.html │ │ ├── GpSource.html │ │ ├── ImageChooser.html │ │ ├── ItemSelector.html │ │ ├── LayerChooser.html │ │ ├── LayerChooserFromMapWithDropbox.html │ │ ├── LoadingShelter.html │ │ ├── PopupConfig.html │ │ ├── QueryableLayerSource.html │ │ ├── QueryableServiceChooserFromPortal.html │ │ ├── RelationshipConfig.html │ │ ├── RendererChooser.html │ │ ├── SymbolChooser.html │ │ ├── TabContainer3.html │ │ ├── _BasicServiceChooser.html │ │ ├── _BasicServiceChooserContent.html │ │ ├── _CropImage.html │ │ ├── _FilterSet.html │ │ ├── _ItemTable.html │ │ ├── _SingleFilter.html │ │ ├── _SingleFilterParameter.html │ │ ├── _Transparency.html │ │ └── _TreeNode.html ├── filterUtils.js ├── images │ ├── desktopapp.png │ ├── group_icon.png │ ├── loading.gif │ ├── loading_circle.gif │ ├── mobileapp.png │ ├── webapp.png │ └── webmap.png ├── loaderplugins │ ├── jquery-loader.js │ └── order-loader.js ├── main.js ├── nls │ ├── ar │ │ └── main.js │ ├── cs │ │ └── main.js │ ├── da │ │ └── main.js │ ├── de │ │ └── main.js │ ├── el │ │ └── main.js │ ├── es │ │ └── main.js │ ├── et │ │ └── main.js │ ├── fi │ │ └── main.js │ ├── fr │ │ └── main.js │ ├── he │ │ └── main.js │ ├── it │ │ └── main.js │ ├── ja │ │ └── main.js │ ├── ko │ │ └── main.js │ ├── lt │ │ └── main.js │ ├── lv │ │ └── main.js │ ├── main.js │ ├── nb │ │ └── main.js │ ├── nl │ │ └── main.js │ ├── pl │ │ └── main.js │ ├── pt-br │ │ └── main.js │ ├── pt-pt │ │ └── main.js │ ├── ro │ │ └── main.js │ ├── ru │ │ └── main.js │ ├── sv │ │ └── main.js │ ├── th │ │ └── main.js │ ├── tr │ │ └── main.js │ ├── vi │ │ └── main.js │ ├── zh-cn │ │ └── main.js │ ├── zh-hk │ │ └── main.js │ └── zh-tw │ │ └── main.js ├── oauth-callback.html ├── package.js ├── package.json ├── portalUrlUtils.js ├── portalUtils.js ├── rendererUtils.js ├── serviceBrowserRuleUtils.js ├── shared │ ├── AppVersionManager.js │ ├── BaseVersionManager.js │ ├── basePortalUrlUtils.js │ └── utils.js ├── symbolUtils.js ├── tests │ ├── config-bad-format.json │ ├── config-ok.json │ ├── folder1 │ │ └── test-jquery-loader.js │ ├── images │ │ ├── icon_01.png │ │ ├── icon_02.png │ │ ├── pic1.png │ │ ├── pic2.png │ │ └── pic3.png │ ├── jsfiles │ │ ├── a.js │ │ └── b.js │ ├── my-test-loader.html │ ├── runTests.html │ ├── test-config.js │ ├── test-css.html │ ├── test-datamanager.js │ ├── test-dijit.html │ ├── test-iframe.html │ ├── test-jquery-loader.js │ ├── test-order-loader.js │ ├── test-panelmanager.js │ ├── test-run.js │ ├── test-temp.js │ ├── test-utils.js │ ├── test-versionmanager.js │ ├── test-widgetmanager.js │ ├── testModules.js │ ├── testagoltemplate │ │ ├── test-agoltemplate.js │ │ └── test-data.js │ ├── testdijits │ │ ├── FeaturelayerServiceBrowserTestCase.js │ │ ├── FeaturelayerServiceChooserTestCase.js │ │ ├── FilterTestCase.js │ │ ├── GeocodeServiceBrowserTestCase.js │ │ ├── GeocodeServiceChooserTestCase.js │ │ ├── GpServiceBrowserTestCase.js │ │ ├── GpServiceChooserTestCase.js │ │ ├── LayerFieldChooserTestCase.js │ │ ├── PopupTestCase.js │ │ ├── RendererChooserTestCase.js │ │ ├── ServiceURLInputTestCase.js │ │ ├── SimpleTableTestCase.js │ │ ├── SymbolChooserTestCase.js │ │ └── SymbolPickerTestCase.js │ └── webscene.json ├── tokenUtils.js └── utils.js ├── libs ├── main.js ├── package.js ├── package.json ├── polyfills │ ├── array.generics.js │ ├── bind.js │ ├── console.js │ ├── fileAPI │ │ ├── FileAPI.flash.image.swf │ │ ├── FileAPI.flash.swf │ │ └── FileAPI.js │ ├── now.js │ └── trim.js ├── qrcode.js ├── storejs │ ├── json.js │ └── store.js └── usng │ ├── usng.js │ └── utils.js ├── readme.html ├── simpleLoader.js ├── themes └── FoldableTheme │ ├── common.css │ ├── images │ ├── cancel.png │ ├── close.png │ └── icon.png │ ├── layouts │ ├── default │ │ ├── config.json │ │ ├── icon.png │ │ └── icon_rtl.png │ ├── layout1 │ │ ├── config.json │ │ ├── icon.png │ │ └── icon_rtl.png │ ├── layout2 │ │ ├── config.json │ │ ├── icon.png │ │ └── icon_rtl.png │ ├── layout3 │ │ ├── config.json │ │ ├── icon.png │ │ └── icon_rtl.png │ └── layout4 │ │ ├── config.json │ │ ├── icon.png │ │ └── icon_rtl.png │ ├── main.js │ ├── manifest.json │ ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js │ ├── panels │ ├── DockablePanel │ │ ├── Panel.html │ │ ├── Panel.js │ │ ├── images │ │ │ ├── bar_down.png │ │ │ ├── bar_left.png │ │ │ ├── bar_right.png │ │ │ ├── bar_up.png │ │ │ ├── nav_down.png │ │ │ ├── nav_left.png │ │ │ ├── nav_right.png │ │ │ └── nav_up.png │ │ └── style.css │ └── FoldablePanel │ │ ├── FoldableDijit.js │ │ ├── FoldableWidgetFrame.js │ │ ├── Panel.js │ │ ├── images │ │ ├── fold_down.png │ │ ├── fold_up.png │ │ ├── max.png │ │ ├── minus.png │ │ ├── normal.png │ │ ├── plus.png │ │ └── x.png │ │ └── style.css │ ├── styles │ ├── black │ │ └── style.css │ ├── blue │ │ └── style.css │ ├── cyan │ │ └── style.css │ ├── default │ │ └── style.css │ ├── green │ │ └── style.css │ ├── purple │ │ └── style.css │ ├── red │ │ └── style.css │ └── yellow │ │ └── style.css │ └── widgets │ └── HeaderController │ ├── PopupTileNodes.js │ ├── Widget.html │ ├── Widget.js │ ├── config.json │ ├── css │ ├── images │ │ ├── arrow.png │ │ └── close.png │ └── style.css │ ├── images │ ├── app-logo.png │ ├── group_icon.png │ ├── icon.png │ └── more_icon.png │ ├── manifest.json │ ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js │ └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── web.config └── widgets ├── AttributeTable ├── FeatureLayerQueryResult.js ├── FeatureLayerQueryStore.js ├── PopupHandler.js ├── VersionManager.js ├── Widget.js ├── _FeatureTable.js ├── _RelationshipTable.js ├── config.json ├── css │ ├── images │ │ ├── arrow_down.png │ │ └── arrow_up.png │ └── style.css ├── images │ ├── clear.png │ ├── close.png │ ├── columns.png │ ├── down.png │ ├── export.png │ ├── filter.png │ ├── icon.png │ ├── more.png │ ├── page.png │ ├── refresh.png │ ├── select.png │ ├── symbol.png │ ├── up.png │ └── zoom.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js ├── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ │ └── style.css │ └── nls │ │ ├── ar │ │ └── strings.js │ │ ├── cs │ │ └── strings.js │ │ ├── da │ │ └── strings.js │ │ ├── de │ │ └── strings.js │ │ ├── el │ │ └── strings.js │ │ ├── es │ │ └── strings.js │ │ ├── et │ │ └── strings.js │ │ ├── fi │ │ └── strings.js │ │ ├── fr │ │ └── strings.js │ │ ├── he │ │ └── strings.js │ │ ├── it │ │ └── strings.js │ │ ├── ja │ │ └── strings.js │ │ ├── ko │ │ └── strings.js │ │ ├── lt │ │ └── strings.js │ │ ├── lv │ │ └── strings.js │ │ ├── nb │ │ └── strings.js │ │ ├── nl │ │ └── strings.js │ │ ├── pl │ │ └── strings.js │ │ ├── pt-br │ │ └── strings.js │ │ ├── pt-pt │ │ └── strings.js │ │ ├── ro │ │ └── strings.js │ │ ├── ru │ │ └── strings.js │ │ ├── strings.js │ │ ├── sv │ │ └── strings.js │ │ ├── th │ │ └── strings.js │ │ ├── tr │ │ └── strings.js │ │ ├── vi │ │ └── strings.js │ │ ├── zh-cn │ │ └── strings.js │ │ ├── zh-hk │ │ └── strings.js │ │ └── zh-tw │ │ └── strings.js └── utils.js ├── BasemapGallery ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── add_icon.png │ │ └── edit_map.png │ └── style.css ├── images │ ├── default.jpg │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js ├── setting │ ├── Edit.html │ ├── Edit.js │ ├── Setting.html │ ├── Setting.js │ ├── css │ │ ├── images │ │ │ ├── !.png │ │ │ ├── add_icon.png │ │ │ ├── add_map.png │ │ │ ├── delete_icon.png │ │ │ ├── delete_map.png │ │ │ └── edit_map.png │ │ └── style.css │ └── nls │ │ ├── ar │ │ └── strings.js │ │ ├── cs │ │ └── strings.js │ │ ├── da │ │ └── strings.js │ │ ├── de │ │ └── strings.js │ │ ├── el │ │ └── strings.js │ │ ├── es │ │ └── strings.js │ │ ├── et │ │ └── strings.js │ │ ├── fi │ │ └── strings.js │ │ ├── fr │ │ └── strings.js │ │ ├── he │ │ └── strings.js │ │ ├── it │ │ └── strings.js │ │ ├── ja │ │ └── strings.js │ │ ├── ko │ │ └── strings.js │ │ ├── lt │ │ └── strings.js │ │ ├── lv │ │ └── strings.js │ │ ├── nb │ │ └── strings.js │ │ ├── nl │ │ └── strings.js │ │ ├── pl │ │ └── strings.js │ │ ├── pt-br │ │ └── strings.js │ │ ├── pt-pt │ │ └── strings.js │ │ ├── ro │ │ └── strings.js │ │ ├── ru │ │ └── strings.js │ │ ├── strings.js │ │ ├── sv │ │ └── strings.js │ │ ├── th │ │ └── strings.js │ │ ├── tr │ │ └── strings.js │ │ ├── vi │ │ └── strings.js │ │ ├── zh-cn │ │ └── strings.js │ │ ├── zh-hk │ │ └── strings.js │ │ └── zh-tw │ │ └── strings.js └── utils.js ├── Bookmark ├── ImageNode.js ├── Widget.html ├── Widget.js ├── common.css ├── config.json ├── css │ ├── images │ │ └── add.png │ └── style.css ├── images │ ├── icon.png │ ├── thumbnail_arches_national_park.png │ ├── thumbnail_default.png │ ├── thumbnail_eiffel_tower.png │ ├── thumbnail_forbidden_city.png │ ├── thumbnail_giza_pyramid.png │ ├── thumbnail_great_wall.png │ ├── thumbnail_sf.png │ ├── thumbnail_sydney_opera.png │ └── thumbnail_us.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Edit.html │ ├── Edit.js │ ├── Setting.html │ ├── Setting.js │ ├── css │ ├── images │ │ ├── add.png │ │ ├── add_mark.png │ │ ├── delete_mark.png │ │ ├── drop.png │ │ ├── edit.png │ │ └── edit_mark.png │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Coordinate ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── locate-active.png │ │ ├── locate-hover.png │ │ ├── locate.png │ │ ├── unfold01.png │ │ └── unfold02.png │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Edit.html │ ├── Edit.js │ ├── Setting.html │ ├── Setting.js │ ├── css │ ├── images │ │ ├── add_icon.png │ │ └── setting_help.png │ └── style.css │ ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js │ └── transform.json ├── Draw ├── VersionManager.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ ├── down_black.png │ ├── down_white.png │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Enhanced Query ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ ├── Originalicon.png │ ├── aaicon.png │ ├── aicon.png │ ├── database-search.png │ ├── eicon.png │ ├── icon.png │ └── temp.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ └── zh-cn │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ └── strings.js ├── HomeButton ├── Widget.js ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Identify ├── List.js ├── VersionManager.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── draw_circle.png │ │ ├── draw_ellipse.png │ │ ├── draw_extent.png │ │ ├── draw_freehand_polygon.png │ │ ├── draw_freehand_polyline.png │ │ ├── draw_line.png │ │ ├── draw_point.png │ │ ├── draw_polygon.png │ │ ├── draw_polyline.png │ │ ├── draw_triangle.png │ │ └── i_remove_info.png │ └── style.css ├── images │ ├── i_copy.png │ ├── i_info.png │ ├── icon.png │ └── w_link.png ├── manifest.json ├── nls │ └── strings.js └── setting │ ├── AddFieldBtn.js │ ├── ExcludeLayerEdit.html │ ├── ExcludeLayerEdit.js │ ├── FieldFormatEdit.html │ ├── FieldFormatEdit.js │ ├── IdentifyLayerEdit.html │ ├── IdentifyLayerEdit.js │ ├── IncludeAllButton.js │ ├── IncludeButton.js │ ├── LinkEdit.html │ ├── LinkEdit.js │ ├── Setting.html │ ├── Setting.js │ ├── SimpleTable.js │ ├── SimpleTable2.js │ ├── SymbologyEdit.html │ ├── SymbologyEdit.js │ ├── css │ ├── images │ │ ├── add_enable.png │ │ └── edit_enabled.png │ └── style.css │ └── nls │ └── strings.js ├── LayerList ├── LayerListView.html ├── LayerListView.js ├── NlsStrings.js ├── PopupMenu.html ├── PopupMenu.js ├── PopupMenuInfo.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ └── current_basemap_indicator.png │ └── style.css ├── images │ ├── icon.png │ ├── loading.gif │ ├── noLegend.png │ ├── table.png │ ├── v.png │ ├── v_left.png │ └── v_right.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Legend ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Measure ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ ├── down_black.png │ ├── down_white.png │ ├── icon.png │ └── tapemeasure.png ├── manifest.json ├── nls │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── MyLocation ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── loading.gif │ │ ├── locate.png │ │ └── stop.png │ └── style.css ├── images │ ├── icon.png │ └── locate.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── OverviewMap ├── Widget.js ├── config.json ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ ├── images │ │ ├── bottomleft.png │ │ ├── bottomright.png │ │ ├── topleft.png │ │ └── topright.png │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Pictometry ├── IPA.php ├── Widget - Copy.js ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ ├── icon.png │ ├── pictometryCursor.cur │ └── pictometryCursor.png ├── logo.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ └── zh-cn │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ ├── nls │ └── strings.js │ └── zWidget.html ├── Print ├── Print.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ ├── clear.png │ ├── icon.png │ ├── image.png │ ├── pdf.png │ ├── print.png │ └── settings.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js ├── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ │ └── style.css │ └── nls │ │ ├── ar │ │ └── strings.js │ │ ├── cs │ │ └── strings.js │ │ ├── da │ │ └── strings.js │ │ ├── de │ │ └── strings.js │ │ ├── el │ │ └── strings.js │ │ ├── es │ │ └── strings.js │ │ ├── et │ │ └── strings.js │ │ ├── fi │ │ └── strings.js │ │ ├── fr │ │ └── strings.js │ │ ├── he │ │ └── strings.js │ │ ├── it │ │ └── strings.js │ │ ├── ja │ │ └── strings.js │ │ ├── ko │ │ └── strings.js │ │ ├── lt │ │ └── strings.js │ │ ├── lv │ │ └── strings.js │ │ ├── nb │ │ └── strings.js │ │ ├── nl │ │ └── strings.js │ │ ├── pl │ │ └── strings.js │ │ ├── pt-br │ │ └── strings.js │ │ ├── pt-pt │ │ └── strings.js │ │ ├── ro │ │ └── strings.js │ │ ├── ru │ │ └── strings.js │ │ ├── strings.js │ │ ├── sv │ │ └── strings.js │ │ ├── th │ │ └── strings.js │ │ ├── tr │ │ └── strings.js │ │ ├── vi │ │ └── strings.js │ │ ├── zh-cn │ │ └── strings.js │ │ ├── zh-hk │ │ └── strings.js │ │ └── zh-tw │ │ └── strings.js └── templates │ ├── Print.html │ └── PrintResult.html ├── Scalebar ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ ├── images │ │ ├── Line.png │ │ └── Ruler.png │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── Search ├── VersionManager.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js ├── setting │ ├── LocatorSourceSetting.html │ ├── LocatorSourceSetting.js │ ├── QuerySourceSetting.html │ ├── QuerySourceSetting.js │ ├── Setting.html │ ├── Setting.js │ ├── css │ │ ├── images │ │ │ ├── add_icon.png │ │ │ └── selector.png │ │ └── style.css │ └── nls │ │ ├── ar │ │ └── strings.js │ │ ├── cs │ │ └── strings.js │ │ ├── da │ │ └── strings.js │ │ ├── de │ │ └── strings.js │ │ ├── el │ │ └── strings.js │ │ ├── es │ │ └── strings.js │ │ ├── et │ │ └── strings.js │ │ ├── fi │ │ └── strings.js │ │ ├── fr │ │ └── strings.js │ │ ├── he │ │ └── strings.js │ │ ├── it │ │ └── strings.js │ │ ├── ja │ │ └── strings.js │ │ ├── ko │ │ └── strings.js │ │ ├── lt │ │ └── strings.js │ │ ├── lv │ │ └── strings.js │ │ ├── nb │ │ └── strings.js │ │ ├── nl │ │ └── strings.js │ │ ├── pl │ │ └── strings.js │ │ ├── pt-br │ │ └── strings.js │ │ ├── pt-pt │ │ └── strings.js │ │ ├── ro │ │ └── strings.js │ │ ├── ru │ │ └── strings.js │ │ ├── strings.js │ │ ├── sv │ │ └── strings.js │ │ ├── th │ │ └── strings.js │ │ ├── tr │ │ └── strings.js │ │ ├── vi │ │ └── strings.js │ │ ├── zh-cn │ │ └── strings.js │ │ ├── zh-hk │ │ └── strings.js │ │ └── zh-tw │ │ └── strings.js └── utils.js ├── Splash ├── VersionManager.js ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── logo.png │ │ └── splash_01.png │ └── style.css ├── images │ ├── icon.png │ └── logo.png ├── manifest.json ├── nls │ ├── ar │ │ └── strings.js │ ├── cs │ │ └── strings.js │ ├── da │ │ └── strings.js │ ├── de │ │ └── strings.js │ ├── el │ │ └── strings.js │ ├── es │ │ └── strings.js │ ├── et │ │ └── strings.js │ ├── fi │ │ └── strings.js │ ├── fr │ │ └── strings.js │ ├── he │ │ └── strings.js │ ├── it │ │ └── strings.js │ ├── ja │ │ └── strings.js │ ├── ko │ │ └── strings.js │ ├── lt │ │ └── strings.js │ ├── lv │ │ └── strings.js │ ├── nb │ │ └── strings.js │ ├── nl │ │ └── strings.js │ ├── pl │ │ └── strings.js │ ├── pt-br │ │ └── strings.js │ ├── pt-pt │ │ └── strings.js │ ├── ro │ │ └── strings.js │ ├── ru │ │ └── strings.js │ ├── strings.js │ ├── sv │ │ └── strings.js │ ├── th │ │ └── strings.js │ ├── tr │ │ └── strings.js │ ├── vi │ │ └── strings.js │ ├── zh-cn │ │ └── strings.js │ ├── zh-hk │ │ └── strings.js │ └── zh-tw │ │ └── strings.js └── setting │ ├── ChooseImage.js │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js ├── StreetView ├── StreetView.html ├── Widget.html ├── Widget.js ├── config.json ├── css │ ├── images │ │ ├── gsv_button_down.png │ │ ├── gsv_button_norm.png │ │ └── gsv_button_over.png │ └── style.css ├── images │ ├── SVM.png │ ├── blocker.png │ ├── favicon.png │ ├── flying_gsv_man_e.png │ ├── flying_gsv_man_w.png │ ├── graySVM.png │ ├── i_about.png │ ├── i_gsv.png │ ├── i_warning.png │ ├── icon.png │ ├── icon_.png │ ├── los.png │ ├── noGSV.png │ └── opera_logo.png ├── manifest.json ├── nls │ └── strings.js └── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ └── style.css │ └── nls │ └── strings.js ├── ZoomPrevNext ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ └── strings.js ├── setting │ ├── Setting.html │ ├── Setting.js │ ├── css │ │ └── style.css │ └── nls │ │ └── strings.js └── templates │ └── Help.html ├── ZoomSlider ├── Widget.html ├── Widget.js ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json └── nls │ ├── ar │ └── strings.js │ ├── cs │ └── strings.js │ ├── da │ └── strings.js │ ├── de │ └── strings.js │ ├── el │ └── strings.js │ ├── es │ └── strings.js │ ├── et │ └── strings.js │ ├── fi │ └── strings.js │ ├── fr │ └── strings.js │ ├── he │ └── strings.js │ ├── it │ └── strings.js │ ├── ja │ └── strings.js │ ├── ko │ └── strings.js │ ├── lt │ └── strings.js │ ├── lv │ └── strings.js │ ├── nb │ └── strings.js │ ├── nl │ └── strings.js │ ├── pl │ └── strings.js │ ├── pt-br │ └── strings.js │ ├── pt-pt │ └── strings.js │ ├── ro │ └── strings.js │ ├── ru │ └── strings.js │ ├── strings.js │ ├── sv │ └── strings.js │ ├── th │ └── strings.js │ ├── tr │ └── strings.js │ ├── vi │ └── strings.js │ ├── zh-cn │ └── strings.js │ ├── zh-hk │ └── strings.js │ └── zh-tw │ └── strings.js └── eDraw ├── LICENSE ├── README.md ├── Widget.html ├── Widget.js ├── config.json ├── css ├── images │ ├── clear.png │ ├── down.png │ ├── download.png │ ├── edit.png │ ├── error.png │ ├── info.png │ ├── up.png │ ├── upload.png │ ├── warning.png │ └── zoom.png └── style.css ├── images ├── add.png ├── down_black.png ├── down_white.png ├── edit.png ├── icon.png ├── list.png └── swap_vert.png ├── manifest.json ├── nls ├── ar │ └── strings.js ├── cs │ └── strings.js ├── da │ └── strings.js ├── de │ └── strings.js ├── es │ └── strings.js ├── et │ └── strings.js ├── fi │ └── strings.js ├── fr │ └── strings.js ├── he │ └── strings.js ├── it │ └── strings.js ├── ja │ └── strings.js ├── ko │ └── strings.js ├── lt │ └── strings.js ├── lv │ └── strings.js ├── nb │ └── strings.js ├── nl │ └── strings.js ├── pl │ └── strings.js ├── pt-br │ └── strings.js ├── pt-pt │ └── strings.js ├── ro │ └── strings.js ├── ru │ └── strings.js ├── strings.js ├── sv │ └── strings.js ├── th │ └── strings.js ├── tr │ └── strings.js ├── vi │ └── strings.js └── zh-cn │ └── strings.js └── setting ├── Setting.html ├── Setting.js ├── css ├── images │ └── add.png └── style.css └── nls ├── ar └── strings.js ├── cs └── strings.js ├── da └── strings.js ├── de └── strings.js ├── el └── strings.js ├── es └── strings.js ├── et └── strings.js ├── fi └── strings.js ├── fr └── strings.js ├── he └── strings.js ├── it └── strings.js ├── ja └── strings.js ├── ko └── strings.js ├── lt └── strings.js ├── lv └── strings.js ├── nb └── strings.js ├── nl └── strings.js ├── pl └── strings.js ├── pt-br └── strings.js ├── pt-pt └── strings.js ├── ro └── strings.js ├── ru └── strings.js ├── strings.js ├── sv └── strings.js ├── th └── strings.js ├── tr └── strings.js ├── vi └── strings.js ├── zh-cn └── strings.js ├── zh-hk └── strings.js └── zh-tw └── strings.js /eQuery/.jshintignore: -------------------------------------------------------------------------------- 1 | libs/** 2 | jimu.js/tests/** 3 | arcgis-js-api/** 4 | buildOutput/** 5 | buildScripts/** 6 | **/nls/** 7 | -------------------------------------------------------------------------------- /eQuery/configs/About/icon_About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/About/icon_About.png -------------------------------------------------------------------------------- /eQuery/configs/BasemapGallery/thumbnailUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/BasemapGallery/thumbnailUrl.png -------------------------------------------------------------------------------- /eQuery/configs/BasemapGallery/thumbnailUrl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/BasemapGallery/thumbnailUrl_1.png -------------------------------------------------------------------------------- /eQuery/configs/BasemapGallery/thumbnailUrl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/BasemapGallery/thumbnailUrl_2.png -------------------------------------------------------------------------------- /eQuery/configs/Enhanced Query/config_Enhanced Query.json: -------------------------------------------------------------------------------- 1 | { 2 | "configText": "http://sagiscloud.thempc.org/arcgis/rest/services/sagis_org/SAGIS1/MapServer", 3 | "configText2": "1" 4 | } -------------------------------------------------------------------------------- /eQuery/configs/Pictometry/config_Pictometry.json: -------------------------------------------------------------------------------- 1 | { 2 | "configText": "http://www.sagis.org/php/ipa.php?" 3 | } -------------------------------------------------------------------------------- /eQuery/configs/Screenshot/icon_About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/Screenshot/icon_About.png -------------------------------------------------------------------------------- /eQuery/configs/loading/images/predefined_loading_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/loading/images/predefined_loading_1.gif -------------------------------------------------------------------------------- /eQuery/configs/loading/images/predefined_loading_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/loading/images/predefined_loading_2.gif -------------------------------------------------------------------------------- /eQuery/configs/loading/images/predefined_loading_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/loading/images/predefined_loading_3.gif -------------------------------------------------------------------------------- /eQuery/configs/loading/images/predefined_loading_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/configs/loading/images/predefined_loading_4.gif -------------------------------------------------------------------------------- /eQuery/dynamic-modules/postload.js: -------------------------------------------------------------------------------- 1 | define([], function(){ 2 | //these modules will be loaded after the whole app loaded. 3 | }); -------------------------------------------------------------------------------- /eQuery/dynamic-modules/preload.js: -------------------------------------------------------------------------------- 1 | define([], function(){ 2 | //these modules will be loaded before jimu.main 3 | }); -------------------------------------------------------------------------------- /eQuery/images/app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/app-logo.png -------------------------------------------------------------------------------- /eQuery/images/app-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/app-name.png -------------------------------------------------------------------------------- /eQuery/images/hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/hint.png -------------------------------------------------------------------------------- /eQuery/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/loading.gif -------------------------------------------------------------------------------- /eQuery/images/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/notes.png -------------------------------------------------------------------------------- /eQuery/images/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/shortcut.png -------------------------------------------------------------------------------- /eQuery/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/images/thumbnail.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/add_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/add_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/add_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/add_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/add_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/add_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/black_close_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/black_close_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checkbox_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checkbox_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checkbox_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checkbox_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checkbox_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checkbox_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checked_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checked_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checked_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/checked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/checked_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/close_8_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/close_8_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/close_8_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/close_8_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/close_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/close_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/close_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/delete_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/delete_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/delete_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/delete_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/delete_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/delete_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/depressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/depressed.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/down_arrow_8_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/down_arrow_8_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/down_arrow_8_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/down_arrow_8_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/down_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/down_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/down_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/down_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/down_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/down_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_circle.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_ellipse.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_extent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_extent.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_freehand_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_freehand_polygon.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_freehand_polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_freehand_polyline.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_line.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_point.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_polygon.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_polyline.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_text.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/draw_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/draw_triangle.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/edit_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/edit_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/edit_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/edit_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/edit_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/edit_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/error_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/error_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/fold_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/fold_down.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/fold_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/fold_up.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/folder_close_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/folder_close_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/folder_close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/folder_close_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/folder_open_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/folder_open_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/folder_open_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/folder_open_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/group_layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/group_layer1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/group_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/group_layer2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/image_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/image_layer.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/line_layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/line_layer1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/line_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/line_layer2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/mapserver_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/mapserver_close.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/mapserver_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/mapserver_open.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/max.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/point_layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/point_layer1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/point_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/point_layer2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/polygon_layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/polygon_layer1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/polygon_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/polygon_layer2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/right_arrow_8_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/right_arrow_8_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/right_arrow_8_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/right_arrow_8_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/search_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/search_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/search_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/search_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/search_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/search_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/setting_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/setting_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/setting_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/setting_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/setting_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/setting_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c3.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c4.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c5.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/c6.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb10.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb11.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb12.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb13.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb14.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb15.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb16.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb17.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb18.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb19.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb20.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb21.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb22.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb23.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb24.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb25.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb26.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb27.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb3.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb4.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb5.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb6.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb7.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb8.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/symbol/cb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/symbol/cb9.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/table_under_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/table_under_line.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/tool.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/toolbox.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/up_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/up_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/up_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/up_disabled.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/up_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/up_hover.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/valid.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/validating.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/validating.gif -------------------------------------------------------------------------------- /eQuery/jimu.js/css/images/white_close_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/images/white_close_default.png -------------------------------------------------------------------------------- /eQuery/jimu.js/css/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/css/sprite.png -------------------------------------------------------------------------------- /eQuery/jimu.js/dijit/dijit-all.js: -------------------------------------------------------------------------------- 1 | define([], function(){ 2 | console.warn("This module is used for build only." + 3 | " Please don't include this module in your code."); 4 | }); 5 | -------------------------------------------------------------------------------- /eQuery/jimu.js/dijit/templates/LoadingShelter.html: -------------------------------------------------------------------------------- 1 | 
2 |
3 | 4 |

5 |
6 |
-------------------------------------------------------------------------------- /eQuery/jimu.js/images/desktopapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/desktopapp.png -------------------------------------------------------------------------------- /eQuery/jimu.js/images/group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/group_icon.png -------------------------------------------------------------------------------- /eQuery/jimu.js/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/loading.gif -------------------------------------------------------------------------------- /eQuery/jimu.js/images/loading_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/loading_circle.gif -------------------------------------------------------------------------------- /eQuery/jimu.js/images/mobileapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/mobileapp.png -------------------------------------------------------------------------------- /eQuery/jimu.js/images/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/webapp.png -------------------------------------------------------------------------------- /eQuery/jimu.js/images/webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/images/webmap.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/images/icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/tests/images/icon_01.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/images/icon_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/tests/images/icon_02.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/tests/images/pic1.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/tests/images/pic2.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/jimu.js/tests/images/pic3.png -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/jsfiles/a.js: -------------------------------------------------------------------------------- 1 | test_order_load_value = "a"; -------------------------------------------------------------------------------- /eQuery/jimu.js/tests/jsfiles/b.js: -------------------------------------------------------------------------------- 1 | test_order_load_value = "b"; -------------------------------------------------------------------------------- /eQuery/libs/main.js: -------------------------------------------------------------------------------- 1 | define(["./usng/usng", "./storejs/json", "./storejs/store"], function(){ 2 | 3 | }); -------------------------------------------------------------------------------- /eQuery/libs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wab-app-libs", 3 | "version": "1.0", 4 | "main": "main", 5 | "description": "ArcGIS Web Application libs", 6 | "bugs": "", 7 | "dojoBuild": "package.js" 8 | } 9 | -------------------------------------------------------------------------------- /eQuery/libs/polyfills/fileAPI/FileAPI.flash.image.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/libs/polyfills/fileAPI/FileAPI.flash.image.swf -------------------------------------------------------------------------------- /eQuery/libs/polyfills/fileAPI/FileAPI.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/libs/polyfills/fileAPI/FileAPI.flash.swf -------------------------------------------------------------------------------- /eQuery/libs/polyfills/now.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Date.now Polyfill 3 | */ 4 | 5 | Date.now = function() { 6 | return +new Date(); 7 | }; 8 | 9 | /* End of file now.js */ 10 | -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/images/cancel.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/images/close.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/images/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/default/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/default/icon_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/default/icon_rtl.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout1/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout1/icon_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout1/icon_rtl.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout2/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout2/icon_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout2/icon_rtl.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout3/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout3/icon_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout3/icon_rtl.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout4/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/layouts/layout4/icon_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/layouts/layout4/icon_rtl.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/main.js: -------------------------------------------------------------------------------- 1 | define([], function(){ 2 | 3 | }); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "موضوع قابل للطي", 4 | _layout_default: "تخطيط افتراضي", 5 | _layout_layout1: "تخطيط 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Rozkládací motiv", 4 | _layout_default: "Výchozí rozvržení", 5 | _layout_layout1: "Rozvržení 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Foldbart tema", 4 | _layout_default: "Standardlayout", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Ausblendbares Thema", 4 | _layout_default: "Standard-Layout", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Foldable Theme", 4 | _layout_default: "Προκαθορισμένη διάταξη", 5 | _layout_layout1: "Διάταξη 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Tema plegable", 4 | _layout_default: "Diseño predeterminado", 5 | _layout_layout1: "Diseño 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Kokkuvolditav kujundus", 4 | _layout_default: "Vaikimisi paigutus", 5 | _layout_layout1: "Paigutus 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Taitettava teema", 4 | _layout_default: "Oletusasettelu", 5 | _layout_layout1: "Asettelu 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Thème pliable", 4 | _layout_default: "Mise en page par défaut", 5 | _layout_layout1: "Mise en page 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "ערכת נושא מתקפלת", 4 | _layout_default: "פריסת ברירת מחדל", 5 | _layout_layout1: "פריסה 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Tema avviluppabile", 4 | _layout_default: "Layout predefinito", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "折りたたみ可能なテーマ", 4 | _layout_default: "デフォルトのレイアウト", 5 | _layout_layout1: "レイアウト 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "접을 수 있는 테마", 4 | _layout_default: "기본 레이아웃", 5 | _layout_layout1: "레이아웃 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Langų tema", 4 | _layout_default: "Numatytasis maketas", 5 | _layout_layout1: "1 maketas" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Salokāms dizains", 4 | _layout_default: "Noklusējuma izkārtojums", 5 | _layout_layout1: "1. izkārtojums" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Temaet Foldbar", 4 | _layout_default: "Standard oppsett", 5 | _layout_layout1: "Oppsett 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Inklapbaar thema", 4 | _layout_default: "Standaard lay-out", 5 | _layout_layout1: "Lay-out 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Motyw Składane", 4 | _layout_default: "Układ domyślny", 5 | _layout_layout1: "Układ 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Tema Dobrável", 4 | _layout_default: "Layout Padrão", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Tema Dobrável", 4 | _layout_default: "Layout Padrão", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Temă cu pliere", 4 | _layout_default: "Configuraţie implicită", 5 | _layout_layout1: "Aspectul 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Сворачиваемая тема", 4 | _layout_default: "Компоновка по умолчанию", 5 | _layout_layout1: "Компоновка 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Vikbart tema", 4 | _layout_default: "Standardlayout", 5 | _layout_layout1: "Layout 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "ธีมพับ", 4 | _layout_default: "โครงร่างตั้งต้น", 5 | _layout_layout1: "โครงร่าง 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Katlanabilir Tema", 4 | _layout_default: "Varsayılan Düzen", 5 | _layout_layout1: "Düzen 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "Chủ đề Có thể gấp được", 4 | _layout_default: "Bố cục mặc định", 5 | _layout_layout1: "Bố cục 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "折叠式主题", 4 | _layout_default: "默认布局", 5 | _layout_layout1: "布局 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "折疊式主題", 4 | _layout_default: "預設排版", 5 | _layout_layout1: "排版 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _themeLabel: "折疊式主題", 4 | _layout_default: "預設排版", 5 | _layout_layout1: "排版 1" 6 | }) 7 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_down.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_left.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_right.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/bar_up.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_down.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_left.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_right.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/DockablePanel/images/nav_up.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/fold_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/fold_down.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/fold_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/fold_up.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/max.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/minus.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/normal.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/plus.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/panels/FoldablePanel/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/panels/FoldablePanel/images/x.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/styles/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/styles/default/style.css -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "groupSetting": [ 3 | { 4 | "label": "AttributeTable", 5 | "type": "dropDown" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/css/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/css/images/arrow.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/css/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/css/images/close.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/images/app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/images/app-logo.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/images/group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/images/group_icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/images/icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/images/more_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/themes/FoldableTheme/widgets/HeaderController/images/more_icon.png -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "머리글 컨트롤러", 4 | signin: "로그인", 5 | signout: "로그아웃", 6 | about: "정보", 7 | signInTo: "로그인:", 8 | cantSignOutTip: "이 기능은 미리보기 모드가 제공되지 않습니다." 9 | }) 10 | ); 11 | -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "页眉控制器", 4 | signin: "登录", 5 | signout: "登出", 6 | about: "关于", 7 | signInTo: "登录到", 8 | cantSignOutTip: "此功能不适用于预览模式。" 9 | }) 10 | ); 11 | -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "頁首控制器", 4 | signin: "登入", 5 | signout: "登出", 6 | about: "關於", 7 | signInTo: "登入到", 8 | cantSignOutTip: "此功能不適用於預覽模式。" 9 | }) 10 | ); 11 | -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "頁首控制器", 4 | signin: "登入", 5 | signout: "登出", 6 | about: "關於", 7 | signInTo: "登入到", 8 | cantSignOutTip: "此功能不適用於預覽模式。" 9 | }) 10 | ); 11 | -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/setting/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | group: "名前", 4 | openAll: "すべてをパネルで開く", 5 | dropDown: "ドロップダウン メニューに表示", 6 | noGroup: "ウィジェット グループ セットがありません。", 7 | groupSetLabel: "ウィジェット グループ プロパティの設定" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/setting/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | group: "이름", 4 | openAll: "패널의 모든 항목 열기", 5 | dropDown: "드롭다운 메뉴에 표시", 6 | noGroup: "위젯 그룹 세트가 없습니다.", 7 | groupSetLabel: "위젯 그룹 등록정보 설정" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/setting/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | group: "名称", 4 | openAll: "面板中的\“打开所有\”", 5 | dropDown: "在下拉菜单中显示", 6 | noGroup: "不存在微件组集。", 7 | groupSetLabel: "设置微件组属性" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/setting/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | group: "名稱", 4 | openAll: "面板中的\“打開所有\”", 5 | dropDown: "在下拉功能表中顯示", 6 | noGroup: "不存在 widget 群組集。", 7 | groupSetLabel: "設定 widget 群組屬性" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/themes/FoldableTheme/widgets/HeaderController/setting/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | group: "名稱", 4 | openAll: "面板中的\“打開所有\”", 5 | dropDown: "在下拉功能表中顯示", 6 | noGroup: "不存在 widget 群組集。", 7 | groupSetLabel: "設定 widget 群組屬性" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "layerInfos": [], 3 | "table": { 4 | "pageSizeOptions": [25, 50, 100, 1000] 5 | }, 6 | "hideExportButton": false, 7 | "initiallyExpand": false 8 | } -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/css/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/css/images/arrow_down.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/css/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/css/images/arrow_up.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/clear.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/close.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/columns.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/down.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/export.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/filter.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/more.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/page.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/refresh.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/select.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/symbol.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/up.png -------------------------------------------------------------------------------- /eQuery/widgets/AttributeTable/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/AttributeTable/images/zoom.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 | 6 | -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "basemapGallery": { 3 | "basemaps": [] 4 | } 5 | } -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/css/images/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/css/images/add_icon.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/css/images/edit_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/css/images/edit_map.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/images/default.jpg -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "معرض خرائط الأساس" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galerie podkladových map" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galleri over baggrundskort" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Grundkarten-Galerie" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Συλλογή υποβάθρων" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galería de mapas base" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Aluskaardi galerii" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Taustakartat" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bibliothèque de fonds de carte" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "גלריית מפות בסיס" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galleria mappe di base" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ベースマップ ギャラリー" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "베이스맵 갤러리" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pagrindo žemėlapiai" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pamatkartes galerija" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bakgrunnskartgalleri" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Basiskaartgalerij" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galeria map bazowych" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galeria de Mapa Base" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galeria de Mapas Base" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galerie de hărţi fundal" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Галерея базовых карт" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Galleri för baskartor" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "แกลเลอรี่แผนที่ฐาน" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Altlık Haritası Galerisi" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bộ sưu tập bản đồ nền" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "底图库" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "底圖圖庫" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "底圖圖庫" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/!.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/!.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/add_icon.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/add_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/add_map.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/delete_icon.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/delete_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/delete_map.png -------------------------------------------------------------------------------- /eQuery/widgets/BasemapGallery/setting/css/images/edit_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/BasemapGallery/setting/css/images/edit_map.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookmarks2D": [], 3 | "bookmarks3D": [], 4 | "flyTime": 3000 5 | } 6 | -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/css/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/css/images/add.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_arches_national_park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_arches_national_park.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_default.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_eiffel_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_eiffel_tower.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_forbidden_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_forbidden_city.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_giza_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_giza_pyramid.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_great_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_great_wall.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_sf.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_sydney_opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_sydney_opera.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/images/thumbnail_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/images/thumbnail_us.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/add.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/add_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/add_mark.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/delete_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/delete_mark.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/drop.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/edit.png -------------------------------------------------------------------------------- /eQuery/widgets/Bookmark/setting/css/images/edit_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Bookmark/setting/css/images/edit_mark.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "spatialReferences": [], 3 | "decimalPlaces": 3, 4 | "addSeparator": true 5 | } -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/css/images/locate-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/css/images/locate-active.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/css/images/locate-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/css/images/locate-hover.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/css/images/locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/css/images/locate.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/css/images/unfold01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/css/images/unfold01.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/css/images/unfold02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/css/images/unfold02.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/setting/css/images/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/setting/css/images/add_icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Coordinate/setting/css/images/setting_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Coordinate/setting/css/images/setting_help.png -------------------------------------------------------------------------------- /eQuery/widgets/Draw/images/down_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Draw/images/down_black.png -------------------------------------------------------------------------------- /eQuery/widgets/Draw/images/down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Draw/images/down_white.png -------------------------------------------------------------------------------- /eQuery/widgets/Draw/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Draw/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "configText": "http://sagiscloud.thempc.org/arcgis/rest/services/sagis_org/SAGIS1/MapServer", 3 | "configText2": 1 4 | 5 | } 6 | -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/css/style.css -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/Originalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/Originalicon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/aaicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/aaicon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/aicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/aicon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/database-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/database-search.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/eicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/eicon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/images/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Enhanced Query/images/temp.png -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/setting/Setting.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 | 6 | 7 |
8 | -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/setting/css/style.css: -------------------------------------------------------------------------------- 1 | .jimu-widget-EnhancedQuery-setting input{ 2 | margin-left: 10px; 3 | } -------------------------------------------------------------------------------- /eQuery/widgets/Enhanced Query/setting/nls/strings.js: -------------------------------------------------------------------------------- 1 | define({ 2 | root: ({ 3 | configText: "Set map service to use for Query:", 4 | configText2: "Set layer you would like to use by default to Query:" 5 | 6 | }) 7 | }); 8 | -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/HomeButton/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "زر البداية" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Tlačítko Domů" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "HomeButton" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Schaltfläche \"Startseite\"" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Αρχική σελίδα" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Botón de inicio" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Avalehe nupp" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Kotisivu-painike" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bouton d’accueil" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "לחצן דף הבית" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pulsante Home" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ホーム ボタン" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "홈 버튼" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pradžios mygtukas" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Sākuma poga" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Hjem-knapp" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Home-knop" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Przycisk Start" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Botão da Página Inicial" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Botão Página Inicial" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Buton Pagina principală" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Кнопка На главную" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "HomeButton" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ปุ่มหน้าหลัก" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ana Sayfa Düğmesi" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Nút Trang chủ" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "主目录按钮" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "首頁按鈕" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/HomeButton/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "首頁按鈕" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_circle.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_ellipse.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_extent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_extent.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_freehand_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_freehand_polygon.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_freehand_polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_freehand_polyline.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_line.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_point.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_polygon.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_polyline.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/draw_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/draw_triangle.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/css/images/i_remove_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/css/images/i_remove_info.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/images/i_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/images/i_copy.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/images/i_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/images/i_info.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/images/w_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/images/w_link.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/setting/css/images/add_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/setting/css/images/add_enable.png -------------------------------------------------------------------------------- /eQuery/widgets/Identify/setting/css/images/edit_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Identify/setting/css/images/edit_enabled.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/LayerListView.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
${nls.titleLayers}
4 |
5 |
6 |
7 |
8 | -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/css/images/current_basemap_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/css/images/current_basemap_indicator.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/loading.gif -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/noLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/noLegend.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/table.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/v.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/v_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/v_left.png -------------------------------------------------------------------------------- /eQuery/widgets/LayerList/images/v_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/LayerList/images/v_right.png -------------------------------------------------------------------------------- /eQuery/widgets/Legend/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /eQuery/widgets/Legend/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "legend":{ 3 | "arrangement": 0, 4 | "autoUpdate": true, 5 | "respectCurrentMapScale": true 6 | } 7 | } -------------------------------------------------------------------------------- /eQuery/widgets/Legend/css/style.css: -------------------------------------------------------------------------------- 1 | .esriLegendServiceLabel { 2 | font-size: 14px; 3 | } 4 | .esriLegendLayer{ 5 | font-size: 12px; 6 | } -------------------------------------------------------------------------------- /eQuery/widgets/Legend/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Legend/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "وسيلة إيضاح" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Signaturforklaring" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legende" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Υπόμνημα" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Leyenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legend" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Selite" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Légende" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "מקרא" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "凡例" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "범례" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Apzīmējumi" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Tegnforklaring" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legenda" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Legendă" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Легенда" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Teckenförklaring" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "คำอธิบาย" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Gösterim" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Chú giải" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "图例" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "圖例" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "圖例" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "محاذاة إلى اليسار", 4 | right: "محاذاة إلى اليمين", 5 | arrangement: "ترتيب", 6 | autoUpdate: "تحديث تلقائي", 7 | respectCurrentMapScale: "مراعاة مقياس رسم الخريطة الحالي" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Zarovnat doleva", 4 | right: "Zarovnat doprava", 5 | arrangement: "Uspořádání", 6 | autoUpdate: "Automatická aktualizace", 7 | respectCurrentMapScale: "Zohlednit současné měřítko mapy" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Justér venstre", 4 | right: "Justér højre", 5 | arrangement: "Fordeling", 6 | autoUpdate: "Opdater automatisk", 7 | respectCurrentMapScale: "Overhold kortets nuværende målestok" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Στοίχιση αριστερά", 4 | right: "Στοίχιση δεξιά", 5 | arrangement: "Διάταξη", 6 | autoUpdate: "Αυτόματη ενημέρωση", 7 | respectCurrentMapScale: "Τήρηση τρέχουσας κλίμακας χάρτη" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Vasakjoondus", 4 | right: "Paremjoondus", 5 | arrangement: "Asetus", 6 | autoUpdate: "Uuenda automaatselt", 7 | respectCurrentMapScale: "Säilita kaardi praegune mõõtkava" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Tasaa vasemmalle", 4 | right: "Tasaa oikealle", 5 | arrangement: "Asettelu", 6 | autoUpdate: "Automaattinen päivitys", 7 | respectCurrentMapScale: "Nykyisen kartan mittakaavan suhteessa" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "יישר לשמאל", 4 | right: "יישר לימין", 5 | arrangement: "סידור", 6 | autoUpdate: "עדכונים אוטומטים", 7 | respectCurrentMapScale: "התחשב בקנה המידה הנוכחי של המפה" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Allinea a sinistra", 4 | right: "Allinea a destra", 5 | arrangement: "Disposizione", 6 | autoUpdate: "Aggiornamento automatico", 7 | respectCurrentMapScale: "Rispetta scala mappa corrente" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "左揃え", 4 | right: "右揃え", 5 | arrangement: "配置", 6 | autoUpdate: "自動更新", 7 | respectCurrentMapScale: "現在のマップ縮尺に従う" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "왼쪽 정렬", 4 | right: "오른쪽 정렬", 5 | arrangement: "정렬", 6 | autoUpdate: "자동 업데이트", 7 | respectCurrentMapScale: "현재 맵 축척 관련" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Juster mot venstre", 4 | right: "Juster mot høyre", 5 | arrangement: "Plassering", 6 | autoUpdate: "Automatisk oppdatering", 7 | respectCurrentMapScale: "Respekter gjeldende kartmålestokk" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Links uitlijnen", 4 | right: "Rechts uitlijnen", 5 | arrangement: "Ordening", 6 | autoUpdate: "Automatisch bijwerken", 7 | respectCurrentMapScale: "Huidige schaal van de kaart aanhouden" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Alinhar à Esquerda", 4 | right: "Alinhar à Direita", 5 | arrangement: "Disposição", 6 | autoUpdate: "Atualização Automática", 7 | respectCurrentMapScale: "Respeitar Escala de Mapa Atual" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Aliniere la stânga", 4 | right: "Aliniere la dreapta", 5 | arrangement: "Aranjament", 6 | autoUpdate: "Actualizare automată", 7 | respectCurrentMapScale: "Respectare scară actuală a hărţii" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "По левому краю", 4 | right: "По правому краю", 5 | arrangement: "Расположение", 6 | autoUpdate: "Автообновление", 7 | respectCurrentMapScale: "Учитывать текущий масштаб карты" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Vänsterjustera", 4 | right: "Högerjustera", 5 | arrangement: "Placering", 6 | autoUpdate: "Uppdatera automatiskt", 7 | respectCurrentMapScale: "Respektera aktuell kartskala" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "ซ้าย", 4 | right: "ขวา", 5 | arrangement: "การจัดเรียง", 6 | autoUpdate: "อัพเดทอัตโนมัติ", 7 | respectCurrentMapScale: "เชื่อในมาตราส่วนแผนที่ปัจจุบัน" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Sola Hizala", 4 | right: "Sağa Hizala", 5 | arrangement: "Yerleştirme", 6 | autoUpdate: "Otomatik Güncelle", 7 | respectCurrentMapScale: "Geçerli Harita Ölçeğine Öncelik Ver" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "Căn trái", 4 | right: "Căn phải", 5 | arrangement: "Sắp xếp", 6 | autoUpdate: "Cập nhật Tự động", 7 | respectCurrentMapScale: "Tuân thủ Tỷ lệ của Bản đồ Hiện tại" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "左对齐", 4 | right: "右对齐", 5 | arrangement: "排列", 6 | autoUpdate: "自动更新", 7 | respectCurrentMapScale: "符合当前地图比例" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "靠左對齊", 4 | right: "靠右對齊", 5 | arrangement: "排列", 6 | autoUpdate: "自動更新", 7 | respectCurrentMapScale: "符合目前地圖比例" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Legend/setting/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | left: "靠左對齊", 4 | right: "靠右對齊", 5 | arrangement: "排列", 6 | autoUpdate: "自動更新", 7 | respectCurrentMapScale: "符合目前地圖比例" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Measure/images/down_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Measure/images/down_black.png -------------------------------------------------------------------------------- /eQuery/widgets/Measure/images/down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Measure/images/down_white.png -------------------------------------------------------------------------------- /eQuery/widgets/Measure/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Measure/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Measure/images/tapemeasure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Measure/images/tapemeasure.png -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "locateButton": { 3 | "geolocationOptions": { 4 | "timeout": 15000 5 | }, 6 | "highlightLocation": true 7 | } 8 | } -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/MyLocation/css/images/loading.gif -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/css/images/locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/MyLocation/css/images/locate.png -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/css/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/MyLocation/css/images/stop.png -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/MyLocation/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/images/locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/MyLocation/images/locate.png -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "現在の場所", 4 | title: "現在の場所を検索", 5 | browserError: "このブラウザーでは Geolocation はサポートされていません。", 6 | failureFinding: "現在位置が見つかりません。ブラウザーで現在地が共有されているか確認してください。" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "내 위치", 4 | title: "내 위치 찾기", 5 | browserError: "지오로케이션은 이 브라우저에서 지원되지 않습니다.", 6 | failureFinding: "사용자의 위치를 찾을 수 없습니다. 사용자의 위치가 공유되어 있는지 알아보려면 브라우저를 확인하세요." 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "我的位置", 4 | title: "查找我的位置", 5 | browserError: "此浏览器不支持地理定位。", 6 | failureFinding: "无法找到您的位置。请检查浏览器以确保已共享位置。" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "我的位置", 4 | title: "尋找我的位置", 5 | browserError: "此瀏覽器不支援地理定位。", 6 | failureFinding: "無法找到您的位置。請檢查瀏覽器以確定已共用位置。" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "我的位置", 4 | title: "尋找我的位置", 5 | browserError: "此瀏覽器不支援地理定位。", 6 | failureFinding: "無法找到您的位置。請檢查瀏覽器以確定已共用位置。" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "انتهاء", 4 | highlightLocation: "تمييز الموقع", 5 | useTracking: "لاحظ تغييرات المواقع", 6 | warning: "مدخلات غير صحيحة" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Časový limit vypršel", 4 | highlightLocation: "Zvýraznit polohu", 5 | useTracking: "Sledovat změny umístění", 6 | warning: "Nesprávný vstup" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Timeout", 4 | highlightLocation: "Fremhæv sted", 5 | useTracking: "Se efter positionsændringer", 6 | warning: "Forkert input" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Timeout", 4 | highlightLocation: "Position hervorheben", 5 | useTracking: "Positionsänderungen überwachen", 6 | warning: "Falsche Eingabe" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Χρονικό όριο", 4 | highlightLocation: "Επισήμανση τοποθεσίας", 5 | useTracking: "Παρακολούθηση αλλαγών τοποθεσίας", 6 | warning: "Εσφαλμένη είσοδος" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Tiempo de espera", 4 | highlightLocation: "Resaltar ubicación", 5 | useTracking: "Observar los cambios de ubicación", 6 | warning: "Entrada incorrecta" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Vaheaeg", 4 | highlightLocation: "Tõsta asukoht esile", 5 | useTracking: "Jälgi asukohamuutusi", 6 | warning: "Vale sisend" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Aikakatkaisu", 4 | highlightLocation: "Korosta sijainti", 5 | useTracking: "Tarkkaile sijaintimuutoksia", 6 | warning: "Virheellinen lähtöaineisto" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Expiration", 4 | highlightLocation: "Mettre en surbrillance l’emplacement", 5 | useTracking: "Observer les modifications d\'emplacement", 6 | warning: "Entrée incorrecte" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "זמן מוקצב", 4 | highlightLocation: "הדגש מיקום", 5 | useTracking: "שים לב לשינויים במיקום", 6 | warning: "קלט לא תקין" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Timeout", 4 | highlightLocation: "Evidenzia posizione", 5 | useTracking: "Ricerca modifiche posizione", 6 | warning: "Input errato" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "タイムアウト", 4 | highlightLocation: "現在位置のハイライト表示", 5 | useTracking: "位置の変更を監視", 6 | warning: "不正な入力" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "제한 시간", 4 | highlightLocation: "위치 강조", 5 | useTracking: "위치 변경 사항 보기", 6 | warning: "잘못된 입력" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Skirto laiko pabaiga", 4 | highlightLocation: "Išryškinti vietą", 5 | useTracking: "Žiūrėti vietos pakeitimus", 6 | warning: "Klaidinga įvestis" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Taimauts", 4 | highlightLocation: "Izcelt atrašanās vietu", 5 | useTracking: "Skatīties atrašanās vietas izmaiņas", 6 | warning: "Nepareiza ievade" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Tidsavbrudd", 4 | highlightLocation: "Uthev lokasjon", 5 | useTracking: "Se etter lokasjonsendringer", 6 | warning: "Feil inndata" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Time-out", 4 | highlightLocation: "Locatie markeren", 5 | useTracking: "Let op locatiewijzigingen", 6 | warning: "Onjuiste invoer" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Limit czasu", 4 | highlightLocation: "Wyróżnij lokalizację", 5 | useTracking: "Uważaj na zmiany lokalizacji", 6 | warning: "Nieprawidłowe dane wejściowe" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Tempo Limite", 4 | highlightLocation: "Destacar local", 5 | useTracking: "Assista para alterações do local", 6 | warning: "Entrada incorreta" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Timeout", 4 | highlightLocation: "Destacar local", 5 | useTracking: "Prestar atenção a mudanças de local", 6 | warning: "Entrada incorreta" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Expirare", 4 | highlightLocation: "Evidenţiere locaţie", 5 | useTracking: "Monitorizare modificări locaţie", 6 | warning: "Intrare incorectă" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Окончание срока действия", 4 | highlightLocation: "Подсветить местоположение", 5 | useTracking: "Следить за изменением местоположения", 6 | warning: "Входные данные не корректны" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Timeout", 4 | highlightLocation: "Markera plats", 5 | useTracking: "Håll utkik efter platsändringar", 6 | warning: "Felaktiga indata" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "หมดเวลา", 4 | highlightLocation: "ตำแหน่งที่โดดเด่น", 5 | useTracking: "ดูสำหรับการเปลี่ยนตำแหน่ง", 6 | warning: "ข้อมูลนำเข้าไม่ถูกต้อง" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Zaman aşımı", 4 | highlightLocation: "Konumu vurgula", 5 | useTracking: "Konum değişikliklerini izle", 6 | warning: "Hatalı girdi" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "Thời gian chờ", 4 | highlightLocation: "Vị trí nổi bật", 5 | useTracking: "Theo dõi các thay đổi vị trí", 6 | warning: "Đầu vào không đúng" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "超时", 4 | highlightLocation: "高亮显示位置", 5 | useTracking: "查看位置更改", 6 | warning: "输入不正确" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "逾時", 4 | highlightLocation: "突顯位置", 5 | useTracking: "檢視位置更改", 6 | warning: "輸入不正確" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/MyLocation/setting/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | timeout: "逾時", 4 | highlightLocation: "突顯位置", 5 | useTracking: "檢視位置更改", 6 | warning: "輸入不正確" 7 | }) 8 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "overviewMap":{ 3 | "visible": false 4 | } 5 | } -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/OverviewMap/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "خريطة النظرة العامة" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Přehledová mapa" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Oversigtskort" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Übersichtskarte" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Χάρτης επισκόπησης" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mapa de vista general" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ülevaatekaart" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Yleiskatsauskartta" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Vue générale" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "מפת התמצאות" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mappa d\'insieme" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "概観図" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "개요보기 맵" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Apžvalgos žemėlapis" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pārskata karte" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Oversiktskart" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Overzichtskaart" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Podgląd mapy" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mapa de Visão Geral" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Vista Geral do Mapa" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Hartă de prezentare generală" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Обзорная карта" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Översiktskarta" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ภาพรวมของแผนที่" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Genel Bakış Haritası" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bản đồ Toàn cảnh" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "总览图" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "總覽圖" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "總覽圖" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/setting/css/images/bottomleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/OverviewMap/setting/css/images/bottomleft.png -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/setting/css/images/bottomright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/OverviewMap/setting/css/images/bottomright.png -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/setting/css/images/topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/OverviewMap/setting/css/images/topleft.png -------------------------------------------------------------------------------- /eQuery/widgets/OverviewMap/setting/css/images/topright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/OverviewMap/setting/css/images/topright.png -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "configText":"example: http://www.yourcompany.com/php/ipa.php?" 3 | 4 | } 5 | -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Pictometry/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/images/pictometryCursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Pictometry/images/pictometryCursor.cur -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/images/pictometryCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Pictometry/images/pictometryCursor.png -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Pictometry/logo.png -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/setting/Setting.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/setting/css/style.css: -------------------------------------------------------------------------------- 1 | .jimu-widget-pictometry-setting input{ 2 | margin-left: 10px; 3 | width: 600px!important; 4 | } -------------------------------------------------------------------------------- /eQuery/widgets/Pictometry/setting/nls/strings.js: -------------------------------------------------------------------------------- 1 | define({ 2 | root: ({ 3 | configText: "Set Server URL:" 4 | }) 5 | }); 6 | -------------------------------------------------------------------------------- /eQuery/widgets/Print/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
-------------------------------------------------------------------------------- /eQuery/widgets/Print/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "serviceURL": "", 3 | "defaultTitle": "ArcGIS Web Map", 4 | "defaultAuthor": "Web AppBuilder for ArcGIS", 5 | "defaultCopyright": "", 6 | "defaultFormat": "PDF", 7 | "defaultLayout": "Letter ANSI A Landscape" 8 | } -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/clear.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/image.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/pdf.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/print.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Print/images/settings.png -------------------------------------------------------------------------------- /eQuery/widgets/Print/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Print", 3 | "type": "widget", 4 | "platform": "HTML", 5 | "version": "1.3", 6 | "wabVersion": "1.3", 7 | "author": "Esri R&D Center Beijing", 8 | "description": "", 9 | "copyright": "", 10 | "license": "" 11 | } -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "scalebar": { 3 | "scalebarStyle": "", 4 | "scalebarUnit": "" 5 | } 6 | } -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Scalebar/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "شريط المقياس" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Grafické měřítko" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Målestok" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Maßstabsleiste" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Μπάρα κλίμακας" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barra de escala" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mõõtkava" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mittakaava" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barre d’échelle" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "סרגל קנה מידה" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barra della scala" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "縮尺記号" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "축척 막대" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Mastelio juosta" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Skalas_josla" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "målestokklinje" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Schaalbalk" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Podziałka liniowa" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barra de Escala" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barra de Escala" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Bară de scară" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Масштабная линейка" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Skalfält" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "แถบสเกล" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ölçek çubuğu" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Khung tỷ lệ" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "比例尺" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "比例尺" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "比例尺" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/css/images/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Scalebar/setting/css/images/Line.png -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/css/images/Ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Scalebar/setting/css/images/Ruler.png -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "وحدة", 4 | style: "نمط", 5 | dual: "ثنائي", 6 | english: "لغة إنجليزية", 7 | metric: "متري", 8 | ruler: "مسطرة", 9 | line: "خط" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Jednotka", 4 | style: "Styl", 5 | dual: "dvojí", 6 | english: "anglické", 7 | metric: "metrické", 8 | ruler: "pravítko", 9 | line: "linie" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Enhed", 4 | style: "Typografi", 5 | dual: "dobbelt", 6 | english: "metric", 7 | metric: "metric", 8 | ruler: "lineal", 9 | line: "linje" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Einheit", 4 | style: "Style", 5 | dual: "dual", 6 | english: "Englisch", 7 | metric: "Metrik", 8 | ruler: "Lineal", 9 | line: "Linie" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Μονάδα", 4 | style: "Στυλ", 5 | dual: "διπλό", 6 | english: "αγγλικό", 7 | metric: "μετρικό", 8 | ruler: "χάρακας", 9 | line: "γραμμή" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unidad", 4 | style: "Estilo", 5 | dual: "dual", 6 | english: "inglés", 7 | metric: "métrico", 8 | ruler: "regla", 9 | line: "línea" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Ühik", 4 | style: "Stiil", 5 | dual: "duaalne", 6 | english: "inglise", 7 | metric: "meetermõõdustik", 8 | ruler: "joonlaud", 9 | line: "joon" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Yksikkö", 4 | style: "Tyyli", 5 | dual: "molemmat", 6 | english: "englanti", 7 | metric: "metrinen", 8 | ruler: "viivain", 9 | line: "viiva" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unités", 4 | style: "Style", 5 | dual: "double", 6 | english: "anglaises", 7 | metric: "métriques", 8 | ruler: "règle", 9 | line: "ligne" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "יחידה", 4 | style: "סגנון", 5 | dual: "דואלי", 6 | english: "אנגלי", 7 | metric: "מטרי", 8 | ruler: "סרגל", 9 | line: "קו" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unità", 4 | style: "Stile", 5 | dual: "doppio", 6 | english: "inglese", 7 | metric: "metrico", 8 | ruler: "righello", 9 | line: "linea" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "単位", 4 | style: "スタイル", 5 | dual: "デュアル", 6 | english: "英語", 7 | metric: "メートル法", 8 | ruler: "ルーラー", 9 | line: "ライン" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "단위", 4 | style: "스타일", 5 | dual: "이중", 6 | english: "한국어", 7 | metric: "미터법", 8 | ruler: "눈금자", 9 | line: "라인" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Vienetai", 4 | style: "Stilius", 5 | dual: "abu", 6 | english: "angliški", 7 | metric: "metriniai", 8 | ruler: "liniuotė", 9 | line: "linija" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Vienība", 4 | style: "Stils", 5 | dual: "dubults", 6 | english: "angļu", 7 | metric: "metriska", 8 | ruler: "lineāls", 9 | line: "līnija" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Enhet", 4 | style: "Stil", 5 | dual: "dobbel", 6 | english: "metric", 7 | metric: "metric", 8 | ruler: "linjal", 9 | line: "linje" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Eenheid", 4 | style: "Stijl", 5 | dual: "dubbel", 6 | english: "Engels", 7 | metric: "metrisch", 8 | ruler: "liniaal", 9 | line: "lijn" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Jednostka", 4 | style: "Styl", 5 | dual: "podwójny", 6 | english: "angielski", 7 | metric: "metryczny", 8 | ruler: "linijka", 9 | line: "linia" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unidade", 4 | style: "Estilo", 5 | dual: "dual", 6 | english: "português", 7 | metric: "métrico", 8 | ruler: "régua", 9 | line: "linha" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unidade", 4 | style: "Estilo", 5 | dual: "duplo", 6 | english: "inglês", 7 | metric: "métrico", 8 | ruler: "régua", 9 | line: "linha" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Unitate", 4 | style: "Stil", 5 | dual: "dublu", 6 | english: "imperial", 7 | metric: "metric", 8 | ruler: "riglă", 9 | line: "linie" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Единица измерения", 4 | style: "Стиль", 5 | dual: "двойная", 6 | english: "английский", 7 | metric: "метрическая", 8 | ruler: "линейка", 9 | line: "линейная" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Enhet", 4 | style: "Format", 5 | dual: "dubbel", 6 | english: "metric", 7 | metric: "metric", 8 | ruler: "linjal", 9 | line: "linje" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "หน่วย", 4 | style: "สไตล์", 5 | dual: "คู่", 6 | english: "อังกฤษ", 7 | metric: "เมทริกซ์", 8 | ruler: "ไม้บรรทัด", 9 | line: "เส้น" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Birim", 4 | style: "Stil", 5 | dual: "ikili", 6 | english: "İngilizce", 7 | metric: "metrik", 8 | ruler: "cetvel", 9 | line: "çizgi" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "Đơn vị", 4 | style: "Kiểu", 5 | dual: "kép", 6 | english: "tiếng anh", 7 | metric: "hệ mét", 8 | ruler: "thước", 9 | line: "đường" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "单位", 4 | style: "样式", 5 | dual: "中心", 6 | english: "英语", 7 | metric: "公制", 8 | ruler: "标尺", 9 | line: "线" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "單位", 4 | style: "樣式", 5 | dual: "雙重", 6 | english: "英語", 7 | metric: "公制", 8 | ruler: "標尺", 9 | line: "線" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Scalebar/setting/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | unit: "單位", 4 | style: "樣式", 5 | dual: "雙重", 6 | english: "英語", 7 | metric: "公制", 8 | ruler: "標尺", 9 | line: "線" 10 | }) 11 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /eQuery/widgets/Search/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources":[] 3 | } -------------------------------------------------------------------------------- /eQuery/widgets/Search/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Search/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "بحث", 4 | searchResult: "البحث عن النتائج", 5 | showAllResults: "عرض نتائج البحث ", 6 | showAll: "عرض نتائج البحث", 7 | more: "المزيد" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Hledat", 4 | searchResult: "Výsledek vyhledávání", 5 | showAllResults: "Zobrazit výsledky vyhledávání pro ", 6 | showAll: "Zobrazit výsledky vyhledávání", 7 | more: "více" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Søg", 4 | searchResult: "Søgeresultater", 5 | showAllResults: "Vis søgeresultater for ", 6 | showAll: "Vis søgeresultater", 7 | more: "mere" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Suche", 4 | searchResult: "Suchergebnis", 5 | showAllResults: "Suchergebnisse anzeigen für ", 6 | showAll: "Suchergebnisse anzeigen", 7 | more: "mehr" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Búsqueda", 4 | searchResult: "Resultado de la búsqueda", 5 | showAllResults: "Buscar resultados de ", 6 | showAll: "Mostrar resultados de", 7 | more: "más" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Otsi", 4 | searchResult: "Otsi tulemusi", 5 | showAllResults: "Näita otsingutulemusi päringule ", 6 | showAll: "Näita otsingutulemusi", 7 | more: "rohkem" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Etsi", 4 | searchResult: "Hakutulos", 5 | showAllResults: "Näytä hakutulokset haulle ", 6 | showAll: "Näytä hakutulokset", 7 | more: "lisää" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "חפש", 4 | searchResult: "תוצאות חיפוש", 5 | showAllResults: "הצג תוצאות חיפוש עבור ", 6 | showAll: "הצג תוצאות חיפוש", 7 | more: "עוד" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ricerca", 4 | searchResult: "Risultato ricerca", 5 | showAllResults: "Mostra risultati ricerca per ", 6 | showAll: "Mostra risultati ricerca", 7 | more: "altro" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "検索", 4 | searchResult: "検索結果", 5 | showAllResults: "検索結果の表示 ", 6 | showAll: "検索結果の表示", 7 | more: "その他" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "검색", 4 | searchResult: "검색 결과", 5 | showAllResults: "다음에 대한 검색 결과 보기 ", 6 | showAll: "검색 결과 보기", 7 | more: "기타" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ieškoti", 4 | searchResult: "Paieškos rezultatas", 5 | showAllResults: "Rodyti rezultatus, susijusius su ", 6 | showAll: "Rodyti paieškos rezultatus", 7 | more: "daugiau" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Meklēšana", 4 | searchResult: "Meklēšanas rezultāts", 5 | showAllResults: "Rādīt meklēšanas rezultātus vienumam ", 6 | showAll: "Rādīt meklēšanas rezultātus", 7 | more: "vairāk" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Søke", 4 | searchResult: "Search Results", 5 | showAllResults: "Vis søkeresultater for ", 6 | showAll: "Vis søkeresultater", 7 | more: "mer" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoeken", 4 | searchResult: "Search Results", 5 | showAllResults: "Toon zoekresultaten voor ", 6 | showAll: "Toon zoekresultaten", 7 | more: "meer" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Szukaj", 4 | searchResult: "Search Results", 5 | showAllResults: "Wyświetl wyniki wyszukiwania dla ", 6 | showAll: "Wyświetl wyniki wyszukiwania", 7 | more: "więcej" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pesquisar", 4 | searchResult: "Resultado de pesquisa", 5 | showAllResults: "Mostrar resultados da pesquisa para ", 6 | showAll: "Mostrar resultados da pesquisa", 7 | more: "mais" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Pesquisar", 4 | searchResult: "Pesquisar recultados", 5 | showAllResults: "Mostrar resultados de pesquisa para ", 6 | showAll: "Mostrar resultados de pesquisa", 7 | more: "mais" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Căutare", 4 | searchResult: "Rezultat căutare", 5 | showAllResults: "Afişare rezultate căutare pentru ", 6 | showAll: "Afişare rezultate căutare", 7 | more: "mai mult" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Поиск", 4 | searchResult: "Результаты поиска", 5 | showAllResults: "Показать результаты поиска для ", 6 | showAll: "Показать результаты поиска", 7 | more: "больше" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Sök", 4 | searchResult: "Sökresultat", 5 | showAllResults: "Visa sökresultat för ", 6 | showAll: "Visa sökresultat", 7 | more: "fler" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ค้นหา", 4 | searchResult: "ผลลัพธ์การค้นหา", 5 | showAllResults: "แสดงผลลัพธ์การค้นหาสำหรับ ", 6 | showAll: "แสดงผลลัพธ์การค้นหา", 7 | more: "เพิ่มเติม" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Ara", 4 | searchResult: "Sonuç ara", 5 | showAllResults: "Şunun için sonuçları göster: ", 6 | showAll: "Arama sonuçlarını göster", 7 | more: "diğer" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Tìm kiếm", 4 | searchResult: "Kết quả tìm kiếm", 5 | showAllResults: "Hiển thị kết quả tìm kiếm cho ", 6 | showAll: "Hiển thị kết quả tìm kiếm", 7 | more: "khác" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "搜索", 4 | searchResult: "搜索结果", 5 | showAllResults: "显示搜索结果 ", 6 | showAll: "显示搜索结果", 7 | more: "更多" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "搜尋", 4 | searchResult: "搜尋結果", 5 | showAllResults: "顯示搜尋結果 ", 6 | showAll: "顯示搜尋結果", 7 | more: "更多" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "搜尋", 4 | searchResult: "搜尋結果", 5 | showAllResults: "顯示搜尋結果 ", 6 | showAll: "顯示搜尋結果", 7 | more: "更多" 8 | }) 9 | ); -------------------------------------------------------------------------------- /eQuery/widgets/Search/setting/css/images/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Search/setting/css/images/add_icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Search/setting/css/images/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Search/setting/css/images/selector.png -------------------------------------------------------------------------------- /eQuery/widgets/Splash/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Splash/css/images/logo.png -------------------------------------------------------------------------------- /eQuery/widgets/Splash/css/images/splash_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Splash/css/images/splash_01.png -------------------------------------------------------------------------------- /eQuery/widgets/Splash/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Splash/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/Splash/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/Splash/images/logo.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/Widget.html: -------------------------------------------------------------------------------- 1 |
2 |
${nls.instructions}.
3 |

4 |
5 |
7 |
8 |
-------------------------------------------------------------------------------- /eQuery/widgets/StreetView/css/images/gsv_button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/css/images/gsv_button_down.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/css/images/gsv_button_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/css/images/gsv_button_norm.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/css/images/gsv_button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/css/images/gsv_button_over.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/SVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/SVM.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/blocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/blocker.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/favicon.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/flying_gsv_man_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/flying_gsv_man_e.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/flying_gsv_man_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/flying_gsv_man_w.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/graySVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/graySVM.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/i_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/i_about.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/i_gsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/i_gsv.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/i_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/i_warning.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/icon_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/icon_.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/los.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/los.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/noGSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/noGSV.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/images/opera_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/StreetView/images/opera_logo.png -------------------------------------------------------------------------------- /eQuery/widgets/StreetView/setting/css/style.css: -------------------------------------------------------------------------------- 1 | .widget-street-view-setting{ 2 | margin:0; 3 | padding:0; 4 | font-size:15px; 5 | } 6 | .widget-street-view-setting > table > tbody > tr > td{ 7 | padding:5px 0; 8 | } -------------------------------------------------------------------------------- /eQuery/widgets/ZoomPrevNext/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "style": "vertical", 3 | "scopeSize": "medium", 4 | "layers": [], 5 | "swipeLayerHeight": 160 6 | } -------------------------------------------------------------------------------- /eQuery/widgets/ZoomPrevNext/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/ZoomPrevNext/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/ZoomPrevNext/setting/Setting.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /eQuery/widgets/ZoomPrevNext/setting/css/style.css: -------------------------------------------------------------------------------- 1 | .jimu-widget-zoomprevnext-setting { 2 | font-size: 20px; 3 | position: relative; 4 | text-align: center; 5 | top: 50%; 6 | } -------------------------------------------------------------------------------- /eQuery/widgets/ZoomPrevNext/setting/nls/strings.js: -------------------------------------------------------------------------------- 1 | define({ 2 | root: ({ 3 | configText: "No more configuration." 4 | }) 5 | }); 6 | -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/ZoomSlider/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/ar/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "تكبير/ تصغير المنزلق" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/cs/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Posuvník přiblížení" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/da/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoom-skyder" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/de/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoom-Schieberegler" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/el/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Μπάρα κύλισης εστίασης" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/es/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Control deslizante de zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/et/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Suumimise liugur" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/fi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Tarkennuksen liukusäädin" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/fr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Curseur de zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/he/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "סרגל התמקדות" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/it/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Cursore zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/ja/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ズーム スライダー" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/ko/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "확대/축소 슬라이더" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/lt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Padidinti arba sumažinti slankiklį" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/lv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Tālummaiņas slīdnis" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/nb/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoom-glidebryter" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/nl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoomschuifregelaar" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/pl/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Suwak powiększania" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/pt-br/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Controle Deslizante de Zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/pt-pt/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Barra Deslizante de Zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/ro/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Glisor de zoom" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/ru/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Бегунок увеличения" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/sv/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Zoomskjutreglage" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/th/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "ซูมสไลด์เดอร์" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/tr/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Yaklaştırma Kaydırıcısı" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/vi/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "Thanh trượt Thu phóng" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/zh-cn/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "缩放滑块" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/zh-hk/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "縮放滑稈" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/ZoomSlider/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- 1 | define( 2 | ({ 3 | _widgetLabel: "縮放滑稈" 4 | }) 5 | ); -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/clear.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/down.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/download.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/edit.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/error.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/info.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/up.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/upload.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/warning.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/css/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/css/images/zoom.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/add.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/down_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/down_black.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/down_white.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/edit.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/icon.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/list.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/images/swap_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/images/swap_vert.png -------------------------------------------------------------------------------- /eQuery/widgets/eDraw/setting/css/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinsagis/EnhancedQuery/4b6fa7d17d7838295c9168895b75a6e73a1b7405/eQuery/widgets/eDraw/setting/css/images/add.png --------------------------------------------------------------------------------