├── .idea ├── .name ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── wfst.iml └── workspace.xml ├── README.txt ├── javascript └── wfst-javascript.js ├── stylesheet ├── wfst-custom-controls.css └── wfst-style.css └── wfst.html /.idea/.name: -------------------------------------------------------------------------------- 1 | wfst -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wfst.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/wfst.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/README.txt -------------------------------------------------------------------------------- /javascript/wfst-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/javascript/wfst-javascript.js -------------------------------------------------------------------------------- /stylesheet/wfst-custom-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/stylesheet/wfst-custom-controls.css -------------------------------------------------------------------------------- /stylesheet/wfst-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/stylesheet/wfst-style.css -------------------------------------------------------------------------------- /wfst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-glusica/OpenLayers3_WFS-T/HEAD/wfst.html --------------------------------------------------------------------------------