├── .csslintrc ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── README.md.orig └── widgets ├── AppSettings.js ├── AppSettings ├── README.md ├── _extentMixin.js ├── _layerMixin.js ├── _shareMixin.js ├── appSettings.png ├── php │ ├── dbHelper.php │ └── index.php └── templates │ └── AppSettings.html ├── FeatureTableWrapper.js ├── FeatureTableWrapper └── css │ └── style.css ├── Filter.js ├── Filter ├── README.md ├── css │ └── filter.css ├── docs │ └── filter.png ├── nls │ └── filter.js └── templates │ └── filter.html ├── HeatMap.js ├── HeatMap ├── README.md └── heatmap.png ├── LabelLayer.js ├── LabelLayer ├── README.md ├── docs │ ├── advanced.png │ └── basic.png ├── nls │ └── LabelLayer.js └── templates │ └── LabelLayer.html ├── LoginCookie.js ├── LoginCookie └── README.md ├── MetadataDialog.js ├── MetadataDialog ├── README.md ├── css │ └── MetadataDialog.css ├── metadatadialog.png └── templates │ └── dialogContent.html ├── PDFGenerator.js ├── PDFGenerator └── nls │ └── PDFGenerator.js ├── RelationshipTable ├── README.md ├── RelationshipTable.js ├── identify │ └── factory.js ├── relatedRecords.png └── templates │ └── RelatedRecordTable.html ├── RelationshipTableTabs.js ├── Themes.js ├── TimeSlider.js └── TimeSlider ├── README.md └── timeSlider.png /.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/.csslintrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/README.md -------------------------------------------------------------------------------- /README.md.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/README.md.orig -------------------------------------------------------------------------------- /widgets/AppSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings.js -------------------------------------------------------------------------------- /widgets/AppSettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/README.md -------------------------------------------------------------------------------- /widgets/AppSettings/_extentMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/_extentMixin.js -------------------------------------------------------------------------------- /widgets/AppSettings/_layerMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/_layerMixin.js -------------------------------------------------------------------------------- /widgets/AppSettings/_shareMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/_shareMixin.js -------------------------------------------------------------------------------- /widgets/AppSettings/appSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/appSettings.png -------------------------------------------------------------------------------- /widgets/AppSettings/php/dbHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/php/dbHelper.php -------------------------------------------------------------------------------- /widgets/AppSettings/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/php/index.php -------------------------------------------------------------------------------- /widgets/AppSettings/templates/AppSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/AppSettings/templates/AppSettings.html -------------------------------------------------------------------------------- /widgets/FeatureTableWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/FeatureTableWrapper.js -------------------------------------------------------------------------------- /widgets/FeatureTableWrapper/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/FeatureTableWrapper/css/style.css -------------------------------------------------------------------------------- /widgets/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Filter.js -------------------------------------------------------------------------------- /widgets/Filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Filter/README.md -------------------------------------------------------------------------------- /widgets/Filter/css/filter.css: -------------------------------------------------------------------------------- 1 | .filter-widget hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /widgets/Filter/docs/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Filter/docs/filter.png -------------------------------------------------------------------------------- /widgets/Filter/nls/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Filter/nls/filter.js -------------------------------------------------------------------------------- /widgets/Filter/templates/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Filter/templates/filter.html -------------------------------------------------------------------------------- /widgets/HeatMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/HeatMap.js -------------------------------------------------------------------------------- /widgets/HeatMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/HeatMap/README.md -------------------------------------------------------------------------------- /widgets/HeatMap/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/HeatMap/heatmap.png -------------------------------------------------------------------------------- /widgets/LabelLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer.js -------------------------------------------------------------------------------- /widgets/LabelLayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer/README.md -------------------------------------------------------------------------------- /widgets/LabelLayer/docs/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer/docs/advanced.png -------------------------------------------------------------------------------- /widgets/LabelLayer/docs/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer/docs/basic.png -------------------------------------------------------------------------------- /widgets/LabelLayer/nls/LabelLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer/nls/LabelLayer.js -------------------------------------------------------------------------------- /widgets/LabelLayer/templates/LabelLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LabelLayer/templates/LabelLayer.html -------------------------------------------------------------------------------- /widgets/LoginCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LoginCookie.js -------------------------------------------------------------------------------- /widgets/LoginCookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/LoginCookie/README.md -------------------------------------------------------------------------------- /widgets/MetadataDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/MetadataDialog.js -------------------------------------------------------------------------------- /widgets/MetadataDialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/MetadataDialog/README.md -------------------------------------------------------------------------------- /widgets/MetadataDialog/css/MetadataDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/MetadataDialog/css/MetadataDialog.css -------------------------------------------------------------------------------- /widgets/MetadataDialog/metadatadialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/MetadataDialog/metadatadialog.png -------------------------------------------------------------------------------- /widgets/MetadataDialog/templates/dialogContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/MetadataDialog/templates/dialogContent.html -------------------------------------------------------------------------------- /widgets/PDFGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/PDFGenerator.js -------------------------------------------------------------------------------- /widgets/PDFGenerator/nls/PDFGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/PDFGenerator/nls/PDFGenerator.js -------------------------------------------------------------------------------- /widgets/RelationshipTable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTable/README.md -------------------------------------------------------------------------------- /widgets/RelationshipTable/RelationshipTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTable/RelationshipTable.js -------------------------------------------------------------------------------- /widgets/RelationshipTable/identify/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTable/identify/factory.js -------------------------------------------------------------------------------- /widgets/RelationshipTable/relatedRecords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTable/relatedRecords.png -------------------------------------------------------------------------------- /widgets/RelationshipTable/templates/RelatedRecordTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTable/templates/RelatedRecordTable.html -------------------------------------------------------------------------------- /widgets/RelationshipTableTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/RelationshipTableTabs.js -------------------------------------------------------------------------------- /widgets/Themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/Themes.js -------------------------------------------------------------------------------- /widgets/TimeSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/TimeSlider.js -------------------------------------------------------------------------------- /widgets/TimeSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/TimeSlider/README.md -------------------------------------------------------------------------------- /widgets/TimeSlider/timeSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green3g/cmv-widgets/HEAD/widgets/TimeSlider/timeSlider.png --------------------------------------------------------------------------------