├── Buffer ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── idWebMapLayers.js ├── images │ ├── icon.png │ ├── line_layer.png │ ├── point_layer.png │ └── polygon_layer.png ├── manifest.json └── nls │ ├── es │ └── strings.js │ └── strings.js ├── Dojox_InputList ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json └── nls │ └── strings.js ├── HeatMapES5 ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── idWebMapLayers.js ├── images │ ├── drawIcons │ │ ├── CIRCLE-draw.png │ │ ├── ELLIPSE-draw.png │ │ ├── FREEHAND_POLYGON-draw.png │ │ ├── POLYGON-draw.png │ │ └── RECTANGLE-draw.png │ ├── icon.png │ ├── line_layer.png │ ├── point_layer.png │ └── polygon_layer.png ├── manifest.json └── nls │ ├── es │ └── strings.js │ └── strings.js ├── README.md ├── barChartCedar ├── Widget.html ├── Widget.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── es │ │ └── strings.js │ └── strings.js └── webMapLayersIds.js ├── chartJS ├── Widget.html ├── Widget.js ├── chartJS.js ├── config.json ├── css │ └── style.css ├── images │ └── icon.png ├── manifest.json ├── nls │ ├── es │ │ └── strings.js │ └── strings.js └── webMapLayersIds.js └── selectByAttributes ├── Widget.html ├── Widget.js ├── config.json ├── css └── style.css ├── files ├── bootstrap.min.css ├── bootstrap.min.js └── jquery-3.3.1.min.js ├── idWebMapLayers.js ├── images ├── icon.png ├── line_layer.png ├── point_layer.png └── polygon_layer.png ├── manifest.json └── nls └── strings.js /Buffer/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/Widget.html -------------------------------------------------------------------------------- /Buffer/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/Widget.js -------------------------------------------------------------------------------- /Buffer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/config.json -------------------------------------------------------------------------------- /Buffer/css/style.css: -------------------------------------------------------------------------------- 1 | tr.spaceUnder > td { 2 | padding-bottom: 1em; 3 | } -------------------------------------------------------------------------------- /Buffer/idWebMapLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/idWebMapLayers.js -------------------------------------------------------------------------------- /Buffer/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/images/icon.png -------------------------------------------------------------------------------- /Buffer/images/line_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/images/line_layer.png -------------------------------------------------------------------------------- /Buffer/images/point_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/images/point_layer.png -------------------------------------------------------------------------------- /Buffer/images/polygon_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/images/polygon_layer.png -------------------------------------------------------------------------------- /Buffer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/manifest.json -------------------------------------------------------------------------------- /Buffer/nls/es/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/nls/es/strings.js -------------------------------------------------------------------------------- /Buffer/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Buffer/nls/strings.js -------------------------------------------------------------------------------- /Dojox_InputList/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Dojox_InputList/Widget.html -------------------------------------------------------------------------------- /Dojox_InputList/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Dojox_InputList/Widget.js -------------------------------------------------------------------------------- /Dojox_InputList/config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Dojox_InputList/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dojox_InputList/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Dojox_InputList/images/icon.png -------------------------------------------------------------------------------- /Dojox_InputList/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Dojox_InputList/manifest.json -------------------------------------------------------------------------------- /Dojox_InputList/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/Dojox_InputList/nls/strings.js -------------------------------------------------------------------------------- /HeatMapES5/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/Widget.html -------------------------------------------------------------------------------- /HeatMapES5/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/Widget.js -------------------------------------------------------------------------------- /HeatMapES5/config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /HeatMapES5/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/css/style.css -------------------------------------------------------------------------------- /HeatMapES5/idWebMapLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/idWebMapLayers.js -------------------------------------------------------------------------------- /HeatMapES5/images/drawIcons/CIRCLE-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/drawIcons/CIRCLE-draw.png -------------------------------------------------------------------------------- /HeatMapES5/images/drawIcons/ELLIPSE-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/drawIcons/ELLIPSE-draw.png -------------------------------------------------------------------------------- /HeatMapES5/images/drawIcons/FREEHAND_POLYGON-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/drawIcons/FREEHAND_POLYGON-draw.png -------------------------------------------------------------------------------- /HeatMapES5/images/drawIcons/POLYGON-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/drawIcons/POLYGON-draw.png -------------------------------------------------------------------------------- /HeatMapES5/images/drawIcons/RECTANGLE-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/drawIcons/RECTANGLE-draw.png -------------------------------------------------------------------------------- /HeatMapES5/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/icon.png -------------------------------------------------------------------------------- /HeatMapES5/images/line_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/line_layer.png -------------------------------------------------------------------------------- /HeatMapES5/images/point_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/point_layer.png -------------------------------------------------------------------------------- /HeatMapES5/images/polygon_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/images/polygon_layer.png -------------------------------------------------------------------------------- /HeatMapES5/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/manifest.json -------------------------------------------------------------------------------- /HeatMapES5/nls/es/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/nls/es/strings.js -------------------------------------------------------------------------------- /HeatMapES5/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/HeatMapES5/nls/strings.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/README.md -------------------------------------------------------------------------------- /barChartCedar/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/Widget.html -------------------------------------------------------------------------------- /barChartCedar/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/Widget.js -------------------------------------------------------------------------------- /barChartCedar/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /barChartCedar/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/css/style.css -------------------------------------------------------------------------------- /barChartCedar/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/images/icon.png -------------------------------------------------------------------------------- /barChartCedar/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/manifest.json -------------------------------------------------------------------------------- /barChartCedar/nls/es/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/nls/es/strings.js -------------------------------------------------------------------------------- /barChartCedar/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/nls/strings.js -------------------------------------------------------------------------------- /barChartCedar/webMapLayersIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/barChartCedar/webMapLayersIds.js -------------------------------------------------------------------------------- /chartJS/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/Widget.html -------------------------------------------------------------------------------- /chartJS/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/Widget.js -------------------------------------------------------------------------------- /chartJS/chartJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/chartJS.js -------------------------------------------------------------------------------- /chartJS/config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /chartJS/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/css/style.css -------------------------------------------------------------------------------- /chartJS/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/images/icon.png -------------------------------------------------------------------------------- /chartJS/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/manifest.json -------------------------------------------------------------------------------- /chartJS/nls/es/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/nls/es/strings.js -------------------------------------------------------------------------------- /chartJS/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/nls/strings.js -------------------------------------------------------------------------------- /chartJS/webMapLayersIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/chartJS/webMapLayersIds.js -------------------------------------------------------------------------------- /selectByAttributes/Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/Widget.html -------------------------------------------------------------------------------- /selectByAttributes/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/Widget.js -------------------------------------------------------------------------------- /selectByAttributes/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/config.json -------------------------------------------------------------------------------- /selectByAttributes/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/css/style.css -------------------------------------------------------------------------------- /selectByAttributes/files/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/files/bootstrap.min.css -------------------------------------------------------------------------------- /selectByAttributes/files/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/files/bootstrap.min.js -------------------------------------------------------------------------------- /selectByAttributes/files/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/files/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /selectByAttributes/idWebMapLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/idWebMapLayers.js -------------------------------------------------------------------------------- /selectByAttributes/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/images/icon.png -------------------------------------------------------------------------------- /selectByAttributes/images/line_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/images/line_layer.png -------------------------------------------------------------------------------- /selectByAttributes/images/point_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/images/point_layer.png -------------------------------------------------------------------------------- /selectByAttributes/images/polygon_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/images/polygon_layer.png -------------------------------------------------------------------------------- /selectByAttributes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/manifest.json -------------------------------------------------------------------------------- /selectByAttributes/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdriSolid/wab-custom-widgets/HEAD/selectByAttributes/nls/strings.js --------------------------------------------------------------------------------