File: poi-mapping.xsd

package info (click to toggle)
mapsforge 0.17.0%2Bdfsg.1-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 40,772 kB
  • sloc: java: 43,307; xml: 6,707; sh: 140; makefile: 23
file content (19 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:tns="http://mapsforge.org/poi-mapping" elementFormDefault="qualified"
    targetNamespace="http://mapsforge.org/poi-mapping" xmlns="http://www.w3.org/2001/XMLSchema">

    <element name="category" type="tns:category" />

    <complexType name="category">
        <sequence>
            <element maxOccurs="unbounded" minOccurs="0" ref="tns:category" />
            <element name="mapping" maxOccurs="unbounded" minOccurs="0" type="tns:mapping" />
        </sequence>
        <attribute name="title" use="required" />
    </complexType>

    <complexType name="mapping">
        <attribute name="tag" use="required" />
    </complexType>

</schema>