├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── resources └── tcrs.pptx ├── schema ├── README.md ├── geojson2mapml-default-table.rnc ├── geojson2mapml-default-table.rng ├── mapml-document.xml ├── mapml-viewer.rnc ├── mapml-viewer.sch ├── mapml-viewer.xhtml ├── mapml.rnc └── mapml.sch ├── spec ├── cuts ├── examples │ ├── cbmt.mapml │ ├── map-1.html │ ├── map-2.html │ └── mapml.png └── index.html └── w3c.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/README.md -------------------------------------------------------------------------------- /resources/tcrs.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/resources/tcrs.pptx -------------------------------------------------------------------------------- /schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/README.md -------------------------------------------------------------------------------- /schema/geojson2mapml-default-table.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/geojson2mapml-default-table.rnc -------------------------------------------------------------------------------- /schema/geojson2mapml-default-table.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/geojson2mapml-default-table.rng -------------------------------------------------------------------------------- /schema/mapml-document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml-document.xml -------------------------------------------------------------------------------- /schema/mapml-viewer.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml-viewer.rnc -------------------------------------------------------------------------------- /schema/mapml-viewer.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml-viewer.sch -------------------------------------------------------------------------------- /schema/mapml-viewer.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml-viewer.xhtml -------------------------------------------------------------------------------- /schema/mapml.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml.rnc -------------------------------------------------------------------------------- /schema/mapml.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/schema/mapml.sch -------------------------------------------------------------------------------- /spec/cuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/cuts -------------------------------------------------------------------------------- /spec/examples/cbmt.mapml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/examples/cbmt.mapml -------------------------------------------------------------------------------- /spec/examples/map-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/examples/map-1.html -------------------------------------------------------------------------------- /spec/examples/map-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/examples/map-2.html -------------------------------------------------------------------------------- /spec/examples/mapml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/examples/mapml.png -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/spec/index.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maps4HTML/MapML-Specification/HEAD/w3c.json --------------------------------------------------------------------------------