Skip to content

Commit

Permalink
failed to load tile server list on Java 9+ since I forgot to add the …
Browse files Browse the repository at this point in the history
…Esri copyright in the XML Schema
  • Loading branch information
cpesch committed Apr 25, 2018
1 parent bc9451e commit 47cf036
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions browser-mapview/src/main/doc/tileserver-catalog.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<xsd:simpleType name="copyrightType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Esri"/>
<xsd:enumeration value="Google"/>
<xsd:enumeration value="OpenStreetMap"/>
<xsd:enumeration value="OutdoorActive"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.07.22 at 10:22:26 PM MESZ
// Generated on: 2018.04.25 at 15:48:26 PM MESZ
//


Expand All @@ -21,6 +21,7 @@
* <pre>
* &lt;simpleType name="copyrightType">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="Esri"/>
* &lt;enumeration value="Google"/>
* &lt;enumeration value="OpenStreetMap"/>
* &lt;enumeration value="OutdoorActive"/>
Expand All @@ -35,6 +36,8 @@
@XmlEnum
public enum CopyrightType {

@XmlEnumValue("Esri")
ESRI("Esri"),
@XmlEnumValue("Google")
GOOGLE("Google"),
@XmlEnumValue("OpenStreetMap")
Expand Down

0 comments on commit 47cf036

Please sign in to comment.