diff --git a/dist/reactCompoents/DatePick.jsx.map b/dist/reactCompoents/DatePick.jsx.map
deleted file mode 100644
index eff07222db38088612083f6ca071b20ffc618295..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/DatePick.jsx.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"DatePick.jsx","sourceRoot":"","sources":["../../src/reactCompoents/DatePick.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AACtC,0BAA6B;AAC7B,qBAAmB;AACnB,6CAAwC;AAExC,mDAAkD;AASlD;;GAEG;AACH;IAA8B,4BAAgC;IAG1D,kBAAY,KAAgB,EAAE,OAAe;QAA7C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAExB;QADG,KAAI,CAAC,SAAS,GAAG,kBAAQ,EAAE,CAAC;;IAChC,CAAC;IAED,oCAAiB,GAAjB;QAAA,iBAUC;QATG,IAAI,GAAG,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;QAErD,GAAG,CAAC,UAAU,CACV;YACI,QAAQ,EAAE;gBACN,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC;YACjC,CAAC;SACJ,CACJ,CAAC;IACN,CAAC;IAED,yBAAM,GAAN;QACI,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,WAAW,CAC9B;YAAA,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,KAAK,CAChC;YAAA,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,MAAM,CAChD,KAAK,CAAC,CAAC,EAAC,MAAM,EAAE,cAAc,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAC,CAAC,CACpE,YAAY,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,WAAW,IAAI,IAAI,IAAI,EAAE,CAAC,CAAC,CACjE,QAAQ,CAAC,CAAC,IAAI,CAAC,EAE1B;QAAA,EAAE,IAAI,CAAC,CAAA;IACX,CAAC;IACL,eAAC;AAAD,CAAC,AA9BD,CAA8B,qBAAK,CAAC,SAAS,GA8B5C;AA9BY,4BAAQ;AAgCrB,kBAAe,QAAQ,CAAC","sourcesContent":["/**\r\n * Created by glenn on 6/14/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\n\r\nimport {dateToString} from './helpers/dateFormat';\r\n\r\nexport interface iDatePick{\r\n    label: string;\r\n    id?: string;\r\n    initialDate?: Date;\r\n    change: (val: string) => any\r\n}\r\n\r\n/**\r\n * params label, id, initialDate, change callback with value as string\r\n */\r\nexport class DatePick extends React.Component<iDatePick, null> {\r\n    defaultId: string;\r\n\r\n    constructor(props: iDatePick, context: Object){\r\n        super(props, context);\r\n        this.defaultId = makeGuid();\r\n    }\r\n\r\n    componentDidMount() {\r\n        let $el = $('#' + (this.props.id || this.defaultId));\r\n\r\n        $el.datepicker(\r\n            {\r\n                onSelect: () => {\r\n                    this.props.change($el.val());\r\n                }\r\n            }\r\n        );\r\n    }\r\n\r\n    render() {\r\n        return <span className=\"date-pick\">\r\n            <label>{this.props.label}</label>\r\n            <input id={this.props.id || this.defaultId} type=\"text\"\r\n                   style={{margin: \"0 10px 0 5px\", width: '73px', textAlign: 'center'}}\r\n                   defaultValue={dateToString(this.props.initialDate || new Date())}\r\n                   readOnly={true}\r\n            />\r\n        </span>\r\n    }\r\n}\r\n\r\nexport default DatePick;"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/DateRange.jsx.map b/dist/reactCompoents/DateRange.jsx.map
deleted file mode 100644
index 775695bb44b1e28b319943f81165fb727d9547e7..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/DateRange.jsx.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"DateRange.jsx","sourceRoot":"","sources":["../../src/reactCompoents/DateRange.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAEH,iDAAsC;AAEtC,qBAAmB;AACnB,6CAAwC;AACxC,8CAAgD;AAChD,uCAAkC;AAElC,sBAAsB,GAAgB;IAClC,EAAE,CAAC,CAAE,GAAY,CAAC,OAAO,CAAC,CAAA,CAAC;QACvB,MAAM,CAAC,GAAW,CAAC;IACvB,CAAC;IAAC,IAAI,CAAC,CAAC;QACJ,MAAM,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;IACzB,CAAC;AACL,CAAC;AAYD;IAA+B,6BAAiC;IAW5D,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAmBxB;QA9BD,aAAO,GAAG,kBAAQ,EAAE,CAAC;QACrB,WAAK,GAAG,kBAAQ,EAAE,CAAC;QAYf,KAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;QACpD,KAAI,CAAC,QAAQ,GAAG,OAAO,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC;QAEnG,EAAE,CAAC,CAAC,KAAI,CAAC,QAAQ,GAAG,KAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAChC,MAAM,+DAA+D,CAAC;QAC1E,CAAC;QAED,EAAE,CAAC,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA,CAAC;YACvB,KAAI,CAAC,GAAG,GAAG,YAAY,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;QAClD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,KAAI,CAAC,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC;QAC1B,CAAC;QAED,KAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAC3B,KAAI,CAAC,KAAK,GAAG,IAAI,IAAI,CAAC,KAAI,CAAC,GAAG,CAAC,CAAC;QAChC,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,KAAI,CAAC,QAAQ,CAAC,CAAC;QACzD,KAAI,CAAC,UAAU,EAAE,CAAC;;IACtB,CAAC;IAED,8BAAU,GAAV;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;IACvG,CAAC;IAGD,qCAAiB,GAAjB;QACI,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,OAAO,CAAqB,CAAC;QAC5E,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAqB,CAAC;QACxE,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,sBAAI,gCAAS;aAAb;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QACxE,CAAC;;;OAAA;IAED,4BAAQ,GAAR,UAAS,CAAS;QACd,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;QACrC,IAAI,CAAC,UAAU,EAAE,CAAC;QAElB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,GAAG,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YAEhC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAC/B,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YACzD,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;YAC7D,CAAC;YAED,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACrD,IAAI,CAAC,UAAU,EAAE,CAAC;QACtB,CAAC;QACD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,0BAAM,GAAN,UAAO,CAAS;QACZ,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;QACnC,IAAI,CAAC,UAAU,EAAE,CAAC;QAElB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAEhC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAC/B,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC7D,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;YACjE,CAAC;YAED,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACzD,IAAI,CAAC,UAAU,EAAE,CAAC;QACtB,CAAC;QACD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,0BAAM,GAAN;QAAA,iBAKC;QAJG,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,YAAY,CAC9B;YAAA,CAAC,kBAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAA,CAAA,CAAC,CAAC,EACrG;YAAA,CAAC,kBAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA,CAAA,CAAC,CAAC,EACjG;QAAA,EAAE,GAAG,CAAC,CAAC;IACX,CAAC;IACL,gBAAC;AAAD,CAAC,AA5FD,CAA+B,qBAAK,CAAC,SAAS,GA4F7C;AA5FY,8BAAS","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\nimport * as fixDate from './helpers/dateFormat';\r\nimport DatePick from './DatePick';\r\n\r\nfunction stringToDate(dte: string|Date){\r\n    if ((dte as Date).getTime){\r\n        return dte as Date;\r\n    } else {\r\n        return new Date(dte);\r\n    }\r\n}\r\n\r\nexport interface iDateRange{\r\n    maxRange: number;\r\n    callback: (start: string|Date, end: string|Date) => any;\r\n    minRange?: number;\r\n    maxDate?: string|Date;\r\n    minDate?: string|Date;\r\n    initialEnd?: string|Date;\r\n}\r\n\r\n\r\nexport class DateRange extends React.Component<iDateRange, null> {\r\n    startId = makeGuid();\r\n    endId = makeGuid();\r\n    startInput: HTMLInputElement;\r\n    endInput: HTMLInputElement;\r\n    start: Date;\r\n    end: Date;\r\n    maxRange: number;\r\n    minRange: number;\r\n    numDays: number;\r\n\r\n    constructor(props: iDateRange, context: Object) {\r\n        super(props, context);\r\n\r\n        this.maxRange = Math.round(this.props.maxRange) - 1;\r\n        this.minRange = typeof this.props['minRange'] == 'number' ? Math.round(this.props['minRange']) : 1;\r\n\r\n        if (this.minRange > this.maxRange) {\r\n            throw \"DateRange component: Max range must be greater than min range\";\r\n        }\r\n\r\n        if (this.props.initialEnd){\r\n            this.end = stringToDate(this.props.initialEnd)\r\n        } else {\r\n            this.end = new Date();\r\n        }\r\n\r\n        this.end.setHours(0, 0, 0);\r\n        this.start = new Date(this.end);\r\n        this.start.setDate(this.start.getDate() - this.maxRange);\r\n        this.setNumDays();\r\n    }\r\n\r\n    setNumDays() {\r\n        this.numDays = Math.round((this.end.getTime() - this.start.getTime()) / (1000 * 60 * 60 * 24)) + 1;\r\n    }\r\n\r\n\r\n    componentDidMount() {\r\n        this.startInput = document.getElementById(this.startId) as HTMLInputElement;\r\n        this.endInput = document.getElementById(this.endId) as HTMLInputElement;\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    get needReset(): boolean {\r\n        return this.numDays > this.maxRange || this.numDays < this.minRange;\r\n    }\r\n\r\n    setStart(s: string) {\r\n        this.start = fixDate.stringToDate(s);\r\n        this.setNumDays();\r\n\r\n        if (this.needReset) {\r\n            this.end = new Date(this.start);\r\n\r\n            if (this.numDays > this.maxRange) {\r\n                this.end.setDate(this.end.getDate() + this.maxRange);\r\n            } else {\r\n                this.end.setDate(this.end.getDate() + this.minRange - 1);\r\n            }\r\n\r\n            this.endInput.value = fixDate.dateToString(this.end);\r\n            this.setNumDays();\r\n        }\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    setEnd(s: string) {\r\n        this.end = fixDate.stringToDate(s);\r\n        this.setNumDays();\r\n\r\n        if (this.needReset) {\r\n            this.start = new Date(this.end);\r\n\r\n            if (this.numDays > this.maxRange) {\r\n                this.start.setDate(this.start.getDate() - this.maxRange);\r\n            } else {\r\n                this.start.setDate(this.start.getDate() - this.minRange + 1);\r\n            }\r\n\r\n            this.startInput.value = fixDate.dateToString(this.start);\r\n            this.setNumDays();\r\n        }\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    render() {\r\n        return <div className=\"date-range\">\r\n            <DatePick id={this.startId} label=\"Start\" initialDate={this.start} change={(s) => {this.setStart(s)}}/>\r\n            <DatePick id={this.endId} label=\"End\" initialDate={this.end} change={(s) => {this.setEnd(s)}}/>\r\n        </div>;\r\n    }\r\n}\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/Radio.jsx.map b/dist/reactCompoents/Radio.jsx.map
deleted file mode 100644
index 8cc45a2bd903d8ab304ab39e1082a702aeb16297..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/Radio.jsx.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"Radio.jsx","sourceRoot":"","sources":["../../src/reactCompoents/Radio.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AAEtC,qBAAmB;AACnB,6CAAwC;AAaxC;IAAwB,6BAAiC;IAGrD,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAExB;QADG,KAAI,CAAC,IAAI,GAAG,kBAAQ,EAAE,CAAA;;IAC1B,CAAC;IAGD,0BAAM,GAAN;QAAA,iBAgCC;QA/BG,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;YACpB,KAAK,GAAG;gBACJ,OAAO,EAAE,cAAc;gBACvB,OAAO,EAAE,OAAO;aACnB,CAAC;QACN,CAAC;QAED,IAAI,KAAK,GAAG;YACR,EAAE,EAAE,IAAI,CAAC,IAAI;YACb,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO;YACxB,KAAK,EAAE,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE;YAC5F,QAAQ,EAAE,UAAC,GAAkC;gBACzC,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;gBACpC,GAAG,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;YAC9B,CAAC;YACD,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO;YAC3B,cAAc,EAAG,IAAI,CAAC,KAAK,CAAC,OAAO;SACtC,CAAC;QAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC;YACvB,OAAO,KAAK,CAAC,cAAc,CAAC;QAChC,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,KAAK,CAAC,OAAO,CAAA;QACxB,CAAC;QAED,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CACpB;YAAA,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EACjB;YAAA,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CACvD;QAAA,EAAE,EAAE,CAAC,CAAC;IACV,CAAC;IACL,gBAAC;AAAD,CAAC,AA1CD,CAAwB,qBAAK,CAAC,SAAS,GA0CtC;AAWD;IAAwB,6BAAiC;IAIrD,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAGxB;QAFG,KAAI,CAAC,MAAM,GAAG,KAAI,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC;QACzC,KAAI,CAAC,OAAO,GAAG,KAAI,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;;IACpE,CAAC;IAED,0BAAM,GAAN;QAAA,iBAwCC;QAvCG,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACd,KAAK,GAAG;gBACJ,OAAO,EAAE,cAAc;gBACvB,OAAO,EAAE,OAAO;aACnB,CAAA;QACL,CAAC;QAED,IAAI,GAAG,GAAG,EAAE,CAAC;QAEb,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAE/C,IAAI,SAAS,GAAG;gBACZ,OAAO,EAAE,IAAI,CAAC,OAAO;gBACrB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;gBACzB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM;gBACzB,MAAM,EAAE,UAAC,CAAS,IAAK,OAAA,CAAC,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAxB,CAAwB;gBAC/C,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;gBACxB,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,SAAS,IAAI,KAAK;gBACxC,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,CAAC;aACX,CAAC;YAEF,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,oBAAoB,IAAI,QAAQ,CAAC,CAAA,CAAC;gBACpD,SAAS,CAAC,OAAO,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC;YAC7D,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC;gBAC3E,OAAO,SAAS,CAAC,KAAK,CAAA;YAC1B,CAAC;YAED,GAAG,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC,EAAE,CAAC,CAAA;QACzC,CAAC;QAED,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,YAAY,CAC9B;YAAA,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,EAAE,CAC1B;YAAA,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,EAAC,SAAS,EAAE,MAAM,EAAC,CAAC,CAC3B;gBAAA,CAAC,GAAG,CACR;YAAA,EAAE,EAAE,CACR;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IACL,gBAAC;AAAD,CAAC,AAnDD,CAAwB,qBAAK,CAAC,SAAS,GAmDtC;AAGD;IAA2B,yBAAiI;IAA5J;;IAYA,CAAC;IAVG,sBAAM,GAAN;QACI,MAAM,CAAC,CAAC,SAAS,CACb,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAC9B,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAC1B,oBAAoB,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAC9C,SAAS,CAAC,CAAC,KAAK,CAAC,EACnB,CAAA;IACN,CAAC;IACL,YAAC;AAAD,CAAC,AAZD,CAA2B,qBAAK,CAAC,SAAS,GAYzC;AAZY,sBAAK;AAclB;IAAoC,kCAAkI;IAAtK;;IAYA,CAAC;IAVG,+BAAM,GAAN;QACI,MAAM,CAAC,CAAC,SAAS,CACb,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAC9B,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAC1B,oBAAoB,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAC/C,SAAS,CAAC,CAAC,IAAI,CAAC,EAClB,CAAA;IACN,CAAC;IACL,qBAAC;AAAD,CAAC,AAZD,CAAoC,qBAAK,CAAC,SAAS,GAYlD;AAZY,wCAAc","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\nimport {ChangeEvent} from \"react\";\r\n\r\nexport interface iRadioItem{\r\n    groupId: string;\r\n    text: string;\r\n    checked: boolean;\r\n    inline: boolean;\r\n    change: (s: string) => any;\r\n    connected?: boolean;\r\n    index?: number\r\n}\r\n\r\nclass RadioItem extends React.Component<iRadioItem, null> {\r\n    guid: string;\r\n\r\n    constructor(props: iRadioItem, context: Object){\r\n        super(props, context);\r\n        this.guid = makeGuid()\r\n    }\r\n\r\n\r\n    render() {\r\n        let style = {};\r\n        if (this.props.inline) {\r\n            style = {\r\n                display: 'inline-block',\r\n                padding: '0 5px'\r\n            };\r\n        }\r\n\r\n        let props = {\r\n            id: this.guid,\r\n            type: \"radio\",\r\n            name: this.props.groupId,\r\n            value: typeof this.props.index == 'undefined' ? this.props.text : this.props.index.toFixed(),\r\n            onChange: (evt: ChangeEvent<HTMLInputElement>) => {\r\n                this.props.change(evt.target.value);\r\n                evt.target.checked = true;\r\n            },\r\n            checked: this.props.checked,\r\n            defaultChecked:  this.props.checked\r\n        };\r\n\r\n        if (this.props.connected) {\r\n            delete props.defaultChecked;\r\n        } else {\r\n            delete props.checked\r\n        }\r\n\r\n        return <li style={style}>\r\n            <input {...props}/>\r\n            <label htmlFor={this.guid}>{this.props.text}</label>\r\n        </li>;\r\n    }\r\n}\r\n\r\ninterface iRadioBase {\r\n    title: string;\r\n    items: string[];\r\n    callback: (val: string) => any;\r\n    inline?: boolean;\r\n    selectedValueOrIndex: string|number;\r\n    connected: boolean;\r\n}\r\n\r\nclass RadioBase extends React.Component<iRadioBase, null> {\r\n    inline: boolean;\r\n    groupId: string;\r\n\r\n    constructor(props: iRadioBase, context: Object) {\r\n        super(props, context);\r\n        this.inline = this.props.inline || false;\r\n        this.groupId = this.props.title.toLowerCase().replace(/ /g, '');\r\n    }\r\n\r\n    render() {\r\n        let style = {};\r\n        if (this.inline) {\r\n            style = {\r\n                display: 'inline-block',\r\n                padding: '0 5px'\r\n            }\r\n        }\r\n\r\n        let arr = [];\r\n\r\n        for (let i = 0; i < this.props.items.length; i++) {\r\n\r\n            let itemProps = {\r\n                groupId: this.groupId,\r\n                text: this.props.items[i],\r\n                inline: this.props.inline,\r\n                change: (s: string) => (this.props.callback(s)),\r\n                key: this.props.items[i],\r\n                connected: this.props.connected || false,\r\n                checked: false,\r\n                index: i\r\n            };\r\n\r\n            if (typeof this.props.selectedValueOrIndex == 'number'){\r\n                itemProps.checked = i == this.props.selectedValueOrIndex;\r\n            } else {\r\n                itemProps.checked = this.props.items[i] == this.props.selectedValueOrIndex;\r\n                delete itemProps.index\r\n            }\r\n\r\n            arr.push(<RadioItem {...itemProps}/>)\r\n        }\r\n\r\n        return <div className=\"radio-list\">\r\n            <h4>{this.props.title}</h4>\r\n            <ul style={{listStyle: 'none'}}>\r\n                {arr}\r\n            </ul>\r\n        </div>\r\n    }\r\n}\r\n\r\n\r\nexport class Radio extends React.Component<{ title: string, items: string[], callback: (val: string) => any, inline?: boolean, defaultValue: string }, null> {\r\n\r\n    render() {\r\n        return <RadioBase\r\n            title={this.props.title}\r\n            items={this.props.items}\r\n            callback={this.props.callback}\r\n            inline={this.props.inline}\r\n            selectedValueOrIndex={this.props.defaultValue}\r\n            connected={false}\r\n        />\r\n    }\r\n}\r\n\r\nexport class RadioConnected extends React.Component<{ title: string, items: string[], callback: (val: string) => any, inline?: boolean, selectedIndex: number }, null> {\r\n\r\n    render() {\r\n        return <RadioBase\r\n            title={this.props.title}\r\n            items={this.props.items}\r\n            callback={this.props.callback}\r\n            inline={this.props.inline}\r\n            selectedValueOrIndex={this.props.selectedIndex}\r\n            connected={true}\r\n        />\r\n    }\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/SelectArea.jsx.map b/dist/reactCompoents/SelectArea.jsx.map
deleted file mode 100644
index 1974b2fac83e8ab2eafde42726eba8d096e185b2..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/SelectArea.jsx.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"SelectArea.jsx","sourceRoot":"","sources":["../../src/reactCompoents/SelectArea.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAEH,iDAAsC;AACtC,8BAAiC;AACjC,2EAAsE;AACtE,wDAA2D;AAC3D,6CAAwC;AACxC,6CAAuC;AAOvC;IAAgC,8BAAkC;IAW9D,oBAAY,KAAkB,EAAE,OAAe;QAA/C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAgDxB;QA9CG,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAC3B,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAE3B,KAAI,CAAC,QAAQ,GAAG,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;QAEpC,KAAI,CAAC,WAAW,GAAG,IAAI,gCAAsB,CAAC,EAAE,EAC5C;YACI,KAAK,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;gBACtB,IAAI,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC;oBACpB,KAAK,EAAE,wBAAwB;iBAClC,CAAC;gBACF,MAAM,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC;oBACxB,KAAK,EAAE,kBAAkB;oBACzB,KAAK,EAAE,CAAC;iBACX,CAAC;aACL,CAAC;YACF,SAAS,EAAE,EAAC,cAAc,EAAE,sBAAQ,EAAE,iBAAiB,EAAE,sBAAQ,EAAC;SACrE,CAAC,CAAC;QAEP,KAAI,CAAC,IAAI,GAAG,IAAI,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC;YAChC,MAAM,EAAE,KAAI,CAAC,WAAW,CAAC,MAAM;YAC/B,IAAI,EAAE,SAAS;SAClB,CAAC,CAAC;QAEH,KAAI,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,EAAE,UAAC,GAAoD;YACzE,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;YACrC,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;YAEzC,IAAI,IAAI,GAAG,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YACrC,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC;YAE7B,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;YAE9C,UAAU,CAAC;gBACP,KAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAI,CAAC,IAAI,CAAC,CAAC;YAC1C,CAAC,EAAE,GAAG,CAAC,CAAC;YAER,IAAI,SAAS,GAAG,EAAE,CAAC;YACnB,IAAI,GAAG,GAAG,SAAS,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,CAAC;YAExC,GAAG,CAAC,CAAW,UAAG,EAAH,WAAG,EAAH,iBAAG,EAAH,IAAG;gBAAb,IAAI,EAAE,YAAA;gBACP,SAAS,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;aAClG;YAED,KAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;;IACP,CAAC;IAGD,sCAAiB,GAAjB;QAAA,iBAIC;QAHG,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAChF,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAChF,iBAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,GAAG,GAAG,CAAC,CAAA,CAAA,CAAC,CAAC,CAAA;IAChF,CAAC;IAGD,4BAAO,GAAP;QACI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;YACZ,MAAM,CAAC;QACX,CAAC;QAED,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;QACzC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;QAErC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,2BAAM,GAAN;QACI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;YACZ,MAAM,CAAC;QACX,CAAC;QACD,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;QACrC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;QAEzC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,2BAAM,GAAN;QAAA,iBAWC;QAVG,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAC,MAAM,EAAE,MAAM,EAAC,CAAC,CAChC;YAAA,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;YAChC,KAAI,CAAC,OAAO,EAAE,CAAA;QAClB,CAAC,CAAC,CAAC;YACH,EAAE,MAAM,CACR;YAAA,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;YAChC,KAAI,CAAC,MAAM,EAAE,CAAA;QACjB,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAC,OAAO,EAAE,MAAM,EAAC,CAAC,CAAC;YAC7B,EAAE,MAAM,CACZ;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IACL,iBAAC;AAAD,CAAC,AA5GD,CAAgC,qBAAK,CAAC,SAAS,GA4G9C;AA5GY,gCAAU","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\nimport {React} from './reactAndRedux';\r\nimport ol = require('custom-ol');\r\nimport LayerBaseVectorGeoJson from '../layers/LayerBaseVectorGeoJson';\r\nimport {proj4326, proj3857} from '../olHelpers/projections'\r\nimport makeGuid from '../util/makeGuid';\r\nimport getMap from './helpers/get_map';\r\n\r\nexport interface iSelectArea{\r\n    map: ol.Map | (() => ol.Map);\r\n    callback: (coords: Array<number[]>) => any\r\n}\r\n\r\nexport class SelectArea extends React.Component<iSelectArea, null> {\r\n    map: ol.Map;\r\n    callback: (coords: Array<number[]>) => any;\r\n    areaOverlay: LayerBaseVectorGeoJson;\r\n    draw: ol.interaction.Draw;\r\n    selectId: string;\r\n    cancelId: string;\r\n    selectButton: HTMLButtonElement;\r\n    cancelButton: HTMLButtonElement;\r\n\r\n\r\n    constructor(props: iSelectArea, context: Object) {\r\n        super(props, context);\r\n\r\n        this.selectId = makeGuid();\r\n        this.cancelId = makeGuid();\r\n\r\n        this.callback = this.props.callback;\r\n\r\n        this.areaOverlay = new LayerBaseVectorGeoJson('',\r\n            {\r\n                style: new ol.style.Style({\r\n                    fill: new ol.style.Fill({\r\n                        color: 'rgba(255, 0, 237, 0.1)'\r\n                    }),\r\n                    stroke: new ol.style.Stroke({\r\n                        color: 'rgb(255, 0, 237)',\r\n                        width: 2\r\n                    })\r\n                }),\r\n                transform: {dataProjection: proj4326, featureProjection: proj3857}\r\n            });\r\n\r\n        this.draw = new ol.interaction.Draw({\r\n            source: this.areaOverlay.source,\r\n            type: 'Polygon'\r\n        });\r\n\r\n        this.draw.on('drawend', (evt: {feature: {getGeometry: () => ol.geom.Polygon}}) => {\r\n            this.selectButton.style.display = '';\r\n            this.cancelButton.style.display = 'none';\r\n\r\n            let geom = evt.feature.getGeometry();\r\n            let geomClone = geom.clone();\r\n\r\n            geomClone.transform('EPSG:3857', 'EPSG:4326');\r\n\r\n            setTimeout(() => {\r\n                this.map.removeInteraction(this.draw);\r\n            }, 100);\r\n\r\n            let outCoords = [];\r\n            let ccc = geomClone.getCoordinates()[0];\r\n\r\n            for (let cc of ccc) {\r\n                outCoords.push([Math.round(cc[0] * 1000000) / 1000000, Math.round(cc[1] * 1000000) / 1000000]);\r\n            }\r\n\r\n            this.callback(outCoords);\r\n        });\r\n    }\r\n\r\n\r\n    componentDidMount() {\r\n        this.selectButton = document.getElementById(this.selectId) as HTMLButtonElement;\r\n        this.cancelButton = document.getElementById(this.cancelId) as HTMLButtonElement;\r\n        getMap(this.props.map, this.areaOverlay.olLayer).then((m) => {this.map = m})\r\n    }\r\n\r\n\r\n    setArea() {\r\n        if (!this.map) {\r\n            return;\r\n        }\r\n\r\n        this.selectButton.style.display = 'none';\r\n        this.cancelButton.style.display = '';\r\n\r\n        this.areaOverlay.source.clear();\r\n        this.map.addInteraction(this.draw);\r\n        this.callback(null);\r\n    }\r\n\r\n    cancel() {\r\n        if (!this.map) {\r\n            return;\r\n        }\r\n        this.selectButton.style.display = '';\r\n        this.cancelButton.style.display = 'none';\r\n\r\n        this.areaOverlay.source.clear();\r\n        this.map.removeInteraction(this.draw);\r\n\r\n        this.callback(null);\r\n    }\r\n\r\n    render() {\r\n        return <div style={{margin: '10px'}}>\r\n            <button id={this.selectId} onClick={() => {\r\n                this.setArea()\r\n            }}>Select Area\r\n            </button>\r\n            <button id={this.cancelId} onClick={() => {\r\n                this.cancel()\r\n            }} style={{display: 'none'}}>Cancel\r\n            </button>\r\n        </div>\r\n    }\r\n}\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/Slider.jsx.map b/dist/reactCompoents/Slider.jsx.map
deleted file mode 100644
index 5f28e3f271bdeeba8fc91c030dab1e73735a1da8..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/Slider.jsx.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"Slider.jsx","sourceRoot":"","sources":["../../src/reactCompoents/Slider.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AACtC,6CAAwC;AAaxC;IAA4B,0BAA8B;IAetD,gBAAY,KAAc,EAAE,OAAe;QAA3C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAMxB;QALG,KAAI,CAAC,GAAG,GAAG,kBAAQ,EAAE,CAAC;QACtB,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAC3B,KAAI,CAAC,MAAM,GAAG,kBAAQ,EAAE,CAAC;QACzB,KAAI,CAAC,WAAW,GAAG,kBAAQ,EAAE,CAAC;QAC9B,KAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;IACzB,CAAC;IAED,kCAAiB,GAAjB;QACI,IAAI,CAAC,EAAE,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,CAAqB,CAAC;QAChE,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;QACtC,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAC/E,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,MAAM,CAAsB,CAAC;QAC3E,IAAI,CAAC,cAAc,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAsB,CAAC;IACzF,CAAC;IAED,8BAAa,GAAb;QAEI,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC;QACzC,IAAI,CAAC,EAAE,CAAC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC;QAChC,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC;IAC5C,CAAC;IAED,6BAAY,GAAZ;QAAA,iBAcC;QAbG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC;YACxB,IAAI,GAAG,GAAG,UAAU,CAAC,KAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YACpC,GAAG,IAAI,KAAI,CAAC,IAAI,CAAC;YACjB,EAAE,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,MAAM,CAAC,CAAC,CAAC;gBACpB,GAAG,GAAG,KAAI,CAAC,MAAM,CAAA;YACrB,CAAC;YAED,KAAI,CAAC,EAAE,CAAC,KAAK,GAAG,GAAG,CAAC,QAAQ,EAAE,CAAC;YAC/B,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YACvB,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,KAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3C,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC;IAC5C,CAAC;IAED,4BAAW,GAAX;QACI,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,CAAC,aAAa,EAAE,CAAC;IACzB,CAAC;IAED,+BAAc,GAAd;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA,CAAC;YACd,IAAI,CAAC,WAAW,EAAE,CAAC;YACnB,IAAI,CAAC,YAAY,EAAE,CAAC;QACxB,CAAC;IACL,CAAC;IAGD,uBAAM,GAAN;QAAA,iBA8DC;QA5DG,IAAI,KAAK,GAAG;YACR,EAAE,EAAE,IAAI,CAAC,GAAG;YACZ,GAAG,EAAE,CAAC;YACN,IAAI,EAAE,OAAO;YACb,QAAQ,EAAE,UAAC,GAAkC,IAAM,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA,CAAA,CAAC;YACnG,KAAK,EAAE,EAAC,KAAK,EAAE,MAAM,EAAC;YACtB,GAAG,EAAE,KAAK;YACV,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,EAAE;YAClC,YAAY,EAAE,GAAG;SACpB,CAAC;QAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA,CAAC;YAClB,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;YACxC,KAAK,CAAC,IAAI,GAAG,GAAG,CAAC;QACrB,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA,CAAC;YAClB,OAAO,KAAK,CAAC,YAAY,CAAC;YAC1B,+CAA+C;QACnD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,KAAK,CAAC,KAAK,CAAC;YACnB,+BAA+B;QACnC,CAAC;QAGD,IAAI,KAAK,GAAG,IAAI,CAAC;QACjB,IAAI,IAAI,GAAG,IAAI,CAAC;QAChB,IAAI,cAAc,GAAG,IAAI,CAAC;QAE1B,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;YACrB,KAAK,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;gBACxC,KAAI,CAAC,YAAY,EAAE,CAAA;YACvB,CAAC,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;YAElB,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;gBACrC,KAAI,CAAC,WAAW,EAAE,CAAA;YACtB,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YAEjB,cAAc,GAAG,CAAC,IAAI,CACtB;YAAA,CAAC,KAAK,CAAC,YAAY,EAAE,KAAK,CAC1B;YAAA,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,QAAQ,CAAC,CAAC,cAAO,KAAI,CAAC,cAAc,EAAE,CAAA,CAAA,CAAC,CAAC,CACrF;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,CACpC;YAAA,EAAE,MAAM,CACR;YAAA,EAAE,IAAI,CAAC,CAAC;QACZ,CAAC;QAED,MAAM,CAAC,CAAC,GAAG,CACN;aAAA,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAClB;YAAA,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,cAAc,CAChC;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IAEL,aAAC;AAAD,CAAC,AAvID,CAA4B,qBAAK,CAAC,SAAS,GAuI1C;AAvIY,wBAAM","sourcesContent":["/**\r\n * Created by glenn on 7/6/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport makeGuid from '../util/makeGuid';\r\nimport {ChangeEvent} from \"react\";\r\n\r\n\r\n\r\n\r\nexport interface iSlider {\r\n    change: (d: number) => any;\r\n    steps?: number;\r\n    animate?: boolean;\r\n    value?: number;\r\n}\r\n\r\nexport class Slider extends React.Component<iSlider, null>{\r\n    uid: string;\r\n    startUid: string;\r\n    endUid: string;\r\n    intervalUid: string;\r\n    el: HTMLInputElement;\r\n    startButton: HTMLButtonElement;\r\n    endButton: HTMLButtonElement;\r\n    intervalSelect: HTMLSelectElement;\r\n    interval: number;\r\n    running: boolean;\r\n    minVal: number;\r\n    maxVal: number;\r\n    step: number;\r\n\r\n    constructor(props: iSlider, context: Object) {\r\n        super(props, context);\r\n        this.uid = makeGuid();\r\n        this.startUid = makeGuid();\r\n        this.endUid = makeGuid();\r\n        this.intervalUid = makeGuid();\r\n        this.running = false;\r\n    }\r\n\r\n    componentDidMount() {\r\n        this.el = document.getElementById(this.uid) as HTMLInputElement;\r\n        this.minVal = parseFloat(this.el.min);\r\n        this.maxVal = parseFloat(this.el.max);\r\n        this.step = parseFloat(this.el.step);\r\n        this.startButton = document.getElementById(this.startUid) as HTMLButtonElement;\r\n        this.endButton = document.getElementById(this.endUid) as HTMLButtonElement;\r\n        this.intervalSelect = document.getElementById(this.intervalUid) as HTMLSelectElement;\r\n    }\r\n\r\n    updateRunning() {\r\n\r\n        this.startButton.disabled = this.running;\r\n        this.el.disabled = this.running;\r\n        this.endButton.disabled = !this.running;\r\n    }\r\n\r\n    startAnimate() {\r\n        this.running = true;\r\n        this.updateRunning();\r\n        this.interval = setInterval(() => {\r\n            let val = parseFloat(this.el.value);\r\n            val += this.step;\r\n            if (val > this.maxVal) {\r\n                val = this.minVal\r\n            }\r\n\r\n            this.el.value = val.toString();\r\n            this.props.change(val);\r\n            console.log(parseFloat(this.el.value));\r\n        }, parseInt(this.intervalSelect.value));\r\n    }\r\n\r\n    stopAnimate() {\r\n        clearInterval(this.interval);\r\n        this.running = false;\r\n        this.updateRunning();\r\n    }\r\n\r\n    restartAnimate(){\r\n        if (this.running){\r\n            this.stopAnimate();\r\n            this.startAnimate();\r\n        }\r\n    }\r\n\r\n\r\n    render() {\r\n\r\n        let attrs = {\r\n            id: this.uid,\r\n            min: 0,\r\n            type: 'range',\r\n            onChange: (evt: ChangeEvent<HTMLInputElement>) => {this.props.change(parseFloat(evt.target.value))},\r\n            style: {width: '100%'},\r\n            max: \"100\",\r\n            step: '0.1',\r\n            value: this.props.value.toString(),\r\n            defaultValue: \"0\"\r\n        };\r\n\r\n        if (this.props.steps){\r\n            attrs.max = this.props.steps.toString();\r\n            attrs.step = '1';\r\n        }\r\n\r\n        if (this.props.value){\r\n            delete attrs.defaultValue;\r\n            // attrs['value'] = this.props.value.toString()\r\n        } else {\r\n            delete attrs.value;\r\n            // attrs['defaultValue'] = \"0\";\r\n        }\r\n\r\n\r\n        let start = null;\r\n        let stop = null;\r\n        let intervalSelect = null;\r\n\r\n        if (this.props.animate) {\r\n            start = <button id={this.startUid} onClick={() => {\r\n                this.startAnimate()\r\n            }}>Start</button>;\r\n\r\n            stop = <button id={this.endUid} onClick={() => {\r\n                this.stopAnimate()\r\n            }}>Stop</button>;\r\n\r\n            intervalSelect = <span>\r\n            <label>Interval (s)</label>\r\n            <select defaultValue=\"200\" id={this.intervalUid} onChange={() => {this.restartAnimate()}}>\r\n                <option value=\"100\">0.1</option>\r\n                <option value=\"200\">0.2</option>\r\n                <option value=\"300\">0.3</option>\r\n                <option value=\"400\">0.4</option>\r\n                <option value=\"500\">0.5</option>\r\n                <option value=\"600\">0.6</option>\r\n                <option value=\"700\">0.7</option>\r\n                <option value=\"800\">0.8</option>\r\n                <option value=\"900\">0.9</option>\r\n                <option value=\"1000\">1.0</option>\r\n            </select>\r\n            </span>;\r\n        }\r\n\r\n        return <div>\r\n             <input {...attrs}/>\r\n            {start}{stop}{intervalSelect}\r\n        </div>\r\n    }\r\n\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/helpers/dateFormat.js.map b/dist/reactCompoents/helpers/dateFormat.js.map
deleted file mode 100644
index facee9bb84b7f56a02ba1c6504b9d2c54ecea7ee..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/helpers/dateFormat.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"dateFormat.js","sourceRoot":"","sources":["../../../src/reactCompoents/helpers/dateFormat.ts"],"names":[],"mappings":"AAAA;;GAEG;;;AAEH,sBAA6B,OAAe;IACxC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAE/B,IAAI,EAAE,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAChC,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAC3B,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAE3B,IAAI,GAAG,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAC7B,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAEtB,MAAM,CAAC,GAAG,CAAC;AACf,CAAC;AAXD,oCAWC;AAED,sBAA6B,GAAS,EAAE,OAAsB;IAAtB,wBAAA,EAAA,cAAsB;IAC1D,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC;IAEjC,EAAE,CAAC,CAAC,OAAO,CAAC,CAAA,CAAC;QACT,EAAE,GAAG,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACpC,CAAC,GAAI,CAAC,CAAC,MAAM,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,GAAI,CAAC,CAAE;IACvC,CAAC;IAED,MAAM,CAAI,EAAE,SAAI,CAAC,SAAI,GAAG,CAAC,WAAW,EAAI,CAAC;AAC7C,CAAC;AAVD,oCAUC","sourcesContent":["/**\r\n * Created by glenn on 6/13/2017.\r\n */\r\n\r\nexport function stringToDate(dateStr: string): Date {\r\n    let parts = dateStr.split('/');\r\n\r\n    let mn = parseInt(parts[0]) - 1;\r\n    let d = parseInt(parts[1]);\r\n    let y = parseInt(parts[2]);\r\n\r\n    let dte = new Date(y, mn, d);\r\n    dte.setHours(0, 0, 0);\r\n\r\n    return dte;\r\n}\r\n\r\nexport function dateToString(dte: Date, zeroPad:boolean = true): string {\r\n    let mn = (dte.getMonth() + 1).toString();\r\n    let d = dte.getDate().toString();\r\n\r\n    if (zeroPad){\r\n        mn = mn.length == 1 ? '0' + mn : mn;\r\n        d  = d.length == 1 ? '0' + d  : d ;\r\n    }\r\n\r\n    return `${mn}/${d}/${dte.getFullYear()}`;\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/helpers/get_map.js.map b/dist/reactCompoents/helpers/get_map.js.map
deleted file mode 100644
index 50d7cc97be79f3dc067988c8536b498300959f36..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/helpers/get_map.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"get_map.js","sourceRoot":"","sources":["../../../src/reactCompoents/helpers/get_map.ts"],"names":[],"mappings":";;AAKA,mBAAyB,GAA4B,EAAE,KAAoB;IACvE,MAAM,CAAC,IAAI,OAAO,CAAC,UAAC,OAAO,EAAE,MAAM;QAE/B,EAAE,CAAC,CAAC,OAAO,GAAG,IAAI,UAAU,CAAC,CAAC,CAAC;YAC3B,IAAI,QAAM,GAAG,GAAmB,CAAC;YAEjC,IAAI,GAAC,GAAG,WAAW,CAAC;gBAChB,IAAI,CAAC,GAAG,QAAM,EAAE,CAAC;gBAEjB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACJ,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAClB,aAAa,CAAC,GAAC,CAAC,CAAC;oBACjB,OAAO,CAAC,CAAC,CAAC,CAAC;oBAC/B;mDAC+B;gBACf,CAAC;YACL,CAAC,EAAE,EAAE,CAAC,CAAC;QACX,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,GAAG,GAAa,CAAC;YACtB,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;YAClB,OAAO,CAAC,CAAC,CAAC,CAAC;QACf,CAAC;IACL,CAAC,CAAC,CAAC;AACP,CAAC;AAvBD,4BAuBC","sourcesContent":["/**\r\n * Created by glenn on 7/6/2017.\r\n */\r\nimport ol = require('custom-ol');\r\n\r\nexport default function (map: ol.Map | (() => ol.Map), layer: ol.layer.Base): Promise<ol.Map> {\r\n    return new Promise((resolve, reject) => {\r\n\r\n        if (typeof map == 'function') {\r\n            let getMap = map as () => ol.Map;\r\n\r\n            let g = setInterval(() => {\r\n                let m = getMap();\r\n\r\n                if (m) {\r\n                    m.addLayer(layer);\r\n                    clearInterval(g);\r\n                    resolve(m);\r\n/*                    console.log(m);\r\n                    return m;*/\r\n                }\r\n            }, 15);\r\n        } else {\r\n            let m = map as ol.Map;\r\n            m.addLayer(layer);\r\n            resolve(m);\r\n        }\r\n    });\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/reactAndRedux.js.map b/dist/reactCompoents/reactAndRedux.js.map
deleted file mode 100644
index e664529a720da8da159661203d1e6d84fb8fc0c6..0000000000000000000000000000000000000000
--- a/dist/reactCompoents/reactAndRedux.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"reactAndRedux.js","sourceRoot":"","sources":["../../src/reactCompoents/reactAndRedux.ts"],"names":[],"mappings":";;AAAA;;GAEG;AACH,iCAAuC;AACvC,wCAA8C;AAC9C,4CAAkD;AAClD,iCAAuC;AAI1B,QAAA,OAAO,GAAG,kBAAU,CAAC,OAAO,CAAC;AAC7B,QAAA,QAAQ,GAAG,kBAAU,CAAC,QAAQ,CAAC;AAC5C,mDAAmD;AACtC,QAAA,eAAe,GAAG,aAAK,CAAC,eAAe,CAAC;AACxC,QAAA,WAAW,GAAG,aAAK,CAAC,WAAW,CAAC","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\nexport import React = require('react');\r\nexport import ReactDom = require('react-dom');\r\nexport import ReactRedux = require('react-redux');\r\nexport import Redux = require('redux');\r\n\r\n\r\n\r\nexport const connect = ReactRedux.connect;\r\nexport const Provider = ReactRedux.Provider;\r\n// export { connect, Provider } from 'react-redux';\r\nexport const combineReducers = Redux.combineReducers;\r\nexport const createStore = Redux.createStore;\r\n\r\n// export {combineReducers, createStore, Store, } from 'redux';\r\n\r\nexport interface iAction{\r\n    type: string;\r\n}\r\n\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/DatePick.d.ts b/dist/reactComponents/DatePick.d.ts
similarity index 100%
rename from dist/reactCompoents/DatePick.d.ts
rename to dist/reactComponents/DatePick.d.ts
diff --git a/dist/reactCompoents/DatePick.jsx b/dist/reactComponents/DatePick.jsx
similarity index 100%
rename from dist/reactCompoents/DatePick.jsx
rename to dist/reactComponents/DatePick.jsx
diff --git a/dist/reactComponents/DatePick.jsx.map b/dist/reactComponents/DatePick.jsx.map
new file mode 100644
index 0000000000000000000000000000000000000000..7074b9b2918b6b724c1d3613b5fb2b50de0932b8
--- /dev/null
+++ b/dist/reactComponents/DatePick.jsx.map
@@ -0,0 +1 @@
+{"version":3,"file":"DatePick.jsx","sourceRoot":"","sources":["../../src/reactComponents/DatePick.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AACtC,0BAA6B;AAC7B,qBAAmB;AACnB,6CAAwC;AAExC,mDAAkD;AASlD;;GAEG;AACH;IAA8B,4BAAgC;IAG1D,kBAAY,KAAgB,EAAE,OAAe;QAA7C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAExB;QADG,KAAI,CAAC,SAAS,GAAG,kBAAQ,EAAE,CAAC;;IAChC,CAAC;IAED,oCAAiB,GAAjB;QAAA,iBAUC;QATG,IAAI,GAAG,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;QAErD,GAAG,CAAC,UAAU,CACV;YACI,QAAQ,EAAE;gBACN,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC;YACjC,CAAC;SACJ,CACJ,CAAC;IACN,CAAC;IAED,yBAAM,GAAN;QACI,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,WAAW,CAC9B;YAAA,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,KAAK,CAChC;YAAA,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,MAAM,CAChD,KAAK,CAAC,CAAC,EAAC,MAAM,EAAE,cAAc,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAC,CAAC,CACpE,YAAY,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,WAAW,IAAI,IAAI,IAAI,EAAE,CAAC,CAAC,CACjE,QAAQ,CAAC,CAAC,IAAI,CAAC,EAE1B;QAAA,EAAE,IAAI,CAAC,CAAA;IACX,CAAC;IACL,eAAC;AAAD,CAAC,AA9BD,CAA8B,qBAAK,CAAC,SAAS,GA8B5C;AA9BY,4BAAQ;AAgCrB,kBAAe,QAAQ,CAAC","sourcesContent":["/**\r\n * Created by glenn on 6/14/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\n\r\nimport {dateToString} from './helpers/dateFormat';\r\n\r\nexport interface iDatePick{\r\n    label: string;\r\n    id?: string;\r\n    initialDate?: Date;\r\n    change: (val: string) => any\r\n}\r\n\r\n/**\r\n * params label, id, initialDate, change callback with value as string\r\n */\r\nexport class DatePick extends React.Component<iDatePick, null> {\r\n    defaultId: string;\r\n\r\n    constructor(props: iDatePick, context: Object){\r\n        super(props, context);\r\n        this.defaultId = makeGuid();\r\n    }\r\n\r\n    componentDidMount() {\r\n        let $el = $('#' + (this.props.id || this.defaultId));\r\n\r\n        $el.datepicker(\r\n            {\r\n                onSelect: () => {\r\n                    this.props.change($el.val());\r\n                }\r\n            }\r\n        );\r\n    }\r\n\r\n    render() {\r\n        return <span className=\"date-pick\">\r\n            <label>{this.props.label}</label>\r\n            <input id={this.props.id || this.defaultId} type=\"text\"\r\n                   style={{margin: \"0 10px 0 5px\", width: '73px', textAlign: 'center'}}\r\n                   defaultValue={dateToString(this.props.initialDate || new Date())}\r\n                   readOnly={true}\r\n            />\r\n        </span>\r\n    }\r\n}\r\n\r\nexport default DatePick;"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/DateRange.d.ts b/dist/reactComponents/DateRange.d.ts
similarity index 100%
rename from dist/reactCompoents/DateRange.d.ts
rename to dist/reactComponents/DateRange.d.ts
diff --git a/dist/reactCompoents/DateRange.jsx b/dist/reactComponents/DateRange.jsx
similarity index 100%
rename from dist/reactCompoents/DateRange.jsx
rename to dist/reactComponents/DateRange.jsx
diff --git a/dist/reactComponents/DateRange.jsx.map b/dist/reactComponents/DateRange.jsx.map
new file mode 100644
index 0000000000000000000000000000000000000000..d2bb9304b8b4d7a1ac10b28fc73dbf6777cbb7b3
--- /dev/null
+++ b/dist/reactComponents/DateRange.jsx.map
@@ -0,0 +1 @@
+{"version":3,"file":"DateRange.jsx","sourceRoot":"","sources":["../../src/reactComponents/DateRange.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAEH,iDAAsC;AAEtC,qBAAmB;AACnB,6CAAwC;AACxC,8CAAgD;AAChD,uCAAkC;AAElC,sBAAsB,GAAgB;IAClC,EAAE,CAAC,CAAE,GAAY,CAAC,OAAO,CAAC,CAAA,CAAC;QACvB,MAAM,CAAC,GAAW,CAAC;IACvB,CAAC;IAAC,IAAI,CAAC,CAAC;QACJ,MAAM,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;IACzB,CAAC;AACL,CAAC;AAYD;IAA+B,6BAAiC;IAW5D,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAmBxB;QA9BD,aAAO,GAAG,kBAAQ,EAAE,CAAC;QACrB,WAAK,GAAG,kBAAQ,EAAE,CAAC;QAYf,KAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;QACpD,KAAI,CAAC,QAAQ,GAAG,OAAO,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC;QAEnG,EAAE,CAAC,CAAC,KAAI,CAAC,QAAQ,GAAG,KAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAChC,MAAM,+DAA+D,CAAC;QAC1E,CAAC;QAED,EAAE,CAAC,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA,CAAC;YACvB,KAAI,CAAC,GAAG,GAAG,YAAY,CAAC,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;QAClD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,KAAI,CAAC,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC;QAC1B,CAAC;QAED,KAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAC3B,KAAI,CAAC,KAAK,GAAG,IAAI,IAAI,CAAC,KAAI,CAAC,GAAG,CAAC,CAAC;QAChC,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,KAAI,CAAC,QAAQ,CAAC,CAAC;QACzD,KAAI,CAAC,UAAU,EAAE,CAAC;;IACtB,CAAC;IAED,8BAAU,GAAV;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;IACvG,CAAC;IAGD,qCAAiB,GAAjB;QACI,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,OAAO,CAAqB,CAAC;QAC5E,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAqB,CAAC;QACxE,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,sBAAI,gCAAS;aAAb;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QACxE,CAAC;;;OAAA;IAED,4BAAQ,GAAR,UAAS,CAAS;QACd,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;QACrC,IAAI,CAAC,UAAU,EAAE,CAAC;QAElB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,GAAG,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YAEhC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAC/B,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YACzD,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;YAC7D,CAAC;YAED,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACrD,IAAI,CAAC,UAAU,EAAE,CAAC;QACtB,CAAC;QACD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,0BAAM,GAAN,UAAO,CAAS;QACZ,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;QACnC,IAAI,CAAC,UAAU,EAAE,CAAC;QAElB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAEhC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAC/B,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC7D,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;YACjE,CAAC;YAED,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACzD,IAAI,CAAC,UAAU,EAAE,CAAC;QACtB,CAAC;QACD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9C,CAAC;IAED,0BAAM,GAAN;QAAA,iBAKC;QAJG,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,YAAY,CAC9B;YAAA,CAAC,kBAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAA,CAAA,CAAC,CAAC,EACrG;YAAA,CAAC,kBAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA,CAAA,CAAC,CAAC,EACjG;QAAA,EAAE,GAAG,CAAC,CAAC;IACX,CAAC;IACL,gBAAC;AAAD,CAAC,AA5FD,CAA+B,qBAAK,CAAC,SAAS,GA4F7C;AA5FY,8BAAS","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\nimport * as fixDate from './helpers/dateFormat';\r\nimport DatePick from './DatePick';\r\n\r\nfunction stringToDate(dte: string|Date){\r\n    if ((dte as Date).getTime){\r\n        return dte as Date;\r\n    } else {\r\n        return new Date(dte);\r\n    }\r\n}\r\n\r\nexport interface iDateRange{\r\n    maxRange: number;\r\n    callback: (start: string|Date, end: string|Date) => any;\r\n    minRange?: number;\r\n    maxDate?: string|Date;\r\n    minDate?: string|Date;\r\n    initialEnd?: string|Date;\r\n}\r\n\r\n\r\nexport class DateRange extends React.Component<iDateRange, null> {\r\n    startId = makeGuid();\r\n    endId = makeGuid();\r\n    startInput: HTMLInputElement;\r\n    endInput: HTMLInputElement;\r\n    start: Date;\r\n    end: Date;\r\n    maxRange: number;\r\n    minRange: number;\r\n    numDays: number;\r\n\r\n    constructor(props: iDateRange, context: Object) {\r\n        super(props, context);\r\n\r\n        this.maxRange = Math.round(this.props.maxRange) - 1;\r\n        this.minRange = typeof this.props['minRange'] == 'number' ? Math.round(this.props['minRange']) : 1;\r\n\r\n        if (this.minRange > this.maxRange) {\r\n            throw \"DateRange component: Max range must be greater than min range\";\r\n        }\r\n\r\n        if (this.props.initialEnd){\r\n            this.end = stringToDate(this.props.initialEnd)\r\n        } else {\r\n            this.end = new Date();\r\n        }\r\n\r\n        this.end.setHours(0, 0, 0);\r\n        this.start = new Date(this.end);\r\n        this.start.setDate(this.start.getDate() - this.maxRange);\r\n        this.setNumDays();\r\n    }\r\n\r\n    setNumDays() {\r\n        this.numDays = Math.round((this.end.getTime() - this.start.getTime()) / (1000 * 60 * 60 * 24)) + 1;\r\n    }\r\n\r\n\r\n    componentDidMount() {\r\n        this.startInput = document.getElementById(this.startId) as HTMLInputElement;\r\n        this.endInput = document.getElementById(this.endId) as HTMLInputElement;\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    get needReset(): boolean {\r\n        return this.numDays > this.maxRange || this.numDays < this.minRange;\r\n    }\r\n\r\n    setStart(s: string) {\r\n        this.start = fixDate.stringToDate(s);\r\n        this.setNumDays();\r\n\r\n        if (this.needReset) {\r\n            this.end = new Date(this.start);\r\n\r\n            if (this.numDays > this.maxRange) {\r\n                this.end.setDate(this.end.getDate() + this.maxRange);\r\n            } else {\r\n                this.end.setDate(this.end.getDate() + this.minRange - 1);\r\n            }\r\n\r\n            this.endInput.value = fixDate.dateToString(this.end);\r\n            this.setNumDays();\r\n        }\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    setEnd(s: string) {\r\n        this.end = fixDate.stringToDate(s);\r\n        this.setNumDays();\r\n\r\n        if (this.needReset) {\r\n            this.start = new Date(this.end);\r\n\r\n            if (this.numDays > this.maxRange) {\r\n                this.start.setDate(this.start.getDate() - this.maxRange);\r\n            } else {\r\n                this.start.setDate(this.start.getDate() - this.minRange + 1);\r\n            }\r\n\r\n            this.startInput.value = fixDate.dateToString(this.start);\r\n            this.setNumDays();\r\n        }\r\n        this.props.callback(this.start, this.end);\r\n    }\r\n\r\n    render() {\r\n        return <div className=\"date-range\">\r\n            <DatePick id={this.startId} label=\"Start\" initialDate={this.start} change={(s) => {this.setStart(s)}}/>\r\n            <DatePick id={this.endId} label=\"End\" initialDate={this.end} change={(s) => {this.setEnd(s)}}/>\r\n        </div>;\r\n    }\r\n}\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/Radio.d.ts b/dist/reactComponents/Radio.d.ts
similarity index 100%
rename from dist/reactCompoents/Radio.d.ts
rename to dist/reactComponents/Radio.d.ts
diff --git a/dist/reactCompoents/Radio.jsx b/dist/reactComponents/Radio.jsx
similarity index 100%
rename from dist/reactCompoents/Radio.jsx
rename to dist/reactComponents/Radio.jsx
diff --git a/dist/reactComponents/Radio.jsx.map b/dist/reactComponents/Radio.jsx.map
new file mode 100644
index 0000000000000000000000000000000000000000..9cf2b9c8875de453c347b3cb262b69c64444139f
--- /dev/null
+++ b/dist/reactComponents/Radio.jsx.map
@@ -0,0 +1 @@
+{"version":3,"file":"Radio.jsx","sourceRoot":"","sources":["../../src/reactComponents/Radio.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AAEtC,qBAAmB;AACnB,6CAAwC;AAaxC;IAAwB,6BAAiC;IAGrD,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAExB;QADG,KAAI,CAAC,IAAI,GAAG,kBAAQ,EAAE,CAAA;;IAC1B,CAAC;IAGD,0BAAM,GAAN;QAAA,iBAgCC;QA/BG,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;YACpB,KAAK,GAAG;gBACJ,OAAO,EAAE,cAAc;gBACvB,OAAO,EAAE,OAAO;aACnB,CAAC;QACN,CAAC;QAED,IAAI,KAAK,GAAG;YACR,EAAE,EAAE,IAAI,CAAC,IAAI;YACb,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO;YACxB,KAAK,EAAE,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE;YAC5F,QAAQ,EAAE,UAAC,GAAkC;gBACzC,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;gBACpC,GAAG,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;YAC9B,CAAC;YACD,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO;YAC3B,cAAc,EAAG,IAAI,CAAC,KAAK,CAAC,OAAO;SACtC,CAAC;QAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC;YACvB,OAAO,KAAK,CAAC,cAAc,CAAC;QAChC,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,KAAK,CAAC,OAAO,CAAA;QACxB,CAAC;QAED,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CACpB;YAAA,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EACjB;YAAA,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CACvD;QAAA,EAAE,EAAE,CAAC,CAAC;IACV,CAAC;IACL,gBAAC;AAAD,CAAC,AA1CD,CAAwB,qBAAK,CAAC,SAAS,GA0CtC;AAWD;IAAwB,6BAAiC;IAIrD,mBAAY,KAAiB,EAAE,OAAe;QAA9C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAGxB;QAFG,KAAI,CAAC,MAAM,GAAG,KAAI,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC;QACzC,KAAI,CAAC,OAAO,GAAG,KAAI,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;;IACpE,CAAC;IAED,0BAAM,GAAN;QAAA,iBAwCC;QAvCG,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACd,KAAK,GAAG;gBACJ,OAAO,EAAE,cAAc;gBACvB,OAAO,EAAE,OAAO;aACnB,CAAA;QACL,CAAC;QAED,IAAI,GAAG,GAAG,EAAE,CAAC;QAEb,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAE/C,IAAI,SAAS,GAAG;gBACZ,OAAO,EAAE,IAAI,CAAC,OAAO;gBACrB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;gBACzB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM;gBACzB,MAAM,EAAE,UAAC,CAAS,IAAK,OAAA,CAAC,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAxB,CAAwB;gBAC/C,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;gBACxB,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,SAAS,IAAI,KAAK;gBACxC,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,CAAC;aACX,CAAC;YAEF,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,oBAAoB,IAAI,QAAQ,CAAC,CAAA,CAAC;gBACpD,SAAS,CAAC,OAAO,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC;YAC7D,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC;gBAC3E,OAAO,SAAS,CAAC,KAAK,CAAA;YAC1B,CAAC;YAED,GAAG,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC,EAAE,CAAC,CAAA;QACzC,CAAC;QAED,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,YAAY,CAC9B;YAAA,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,EAAE,CAC1B;YAAA,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,EAAC,SAAS,EAAE,MAAM,EAAC,CAAC,CAC3B;gBAAA,CAAC,GAAG,CACR;YAAA,EAAE,EAAE,CACR;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IACL,gBAAC;AAAD,CAAC,AAnDD,CAAwB,qBAAK,CAAC,SAAS,GAmDtC;AAGD;IAA2B,yBAAiI;IAA5J;;IAYA,CAAC;IAVG,sBAAM,GAAN;QACI,MAAM,CAAC,CAAC,SAAS,CACb,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAC9B,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAC1B,oBAAoB,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAC9C,SAAS,CAAC,CAAC,KAAK,CAAC,EACnB,CAAA;IACN,CAAC;IACL,YAAC;AAAD,CAAC,AAZD,CAA2B,qBAAK,CAAC,SAAS,GAYzC;AAZY,sBAAK;AAclB;IAAoC,kCAAkI;IAAtK;;IAYA,CAAC;IAVG,+BAAM,GAAN;QACI,MAAM,CAAC,CAAC,SAAS,CACb,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CACxB,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAC9B,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAC1B,oBAAoB,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAC/C,SAAS,CAAC,CAAC,IAAI,CAAC,EAClB,CAAA;IACN,CAAC;IACL,qBAAC;AAAD,CAAC,AAZD,CAAoC,qBAAK,CAAC,SAAS,GAYlD;AAZY,wCAAc","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport $ = require('jquery');\r\nimport 'jquery-ui';\r\nimport makeGuid from '../util/makeGuid';\r\nimport {ChangeEvent} from \"react\";\r\n\r\nexport interface iRadioItem{\r\n    groupId: string;\r\n    text: string;\r\n    checked: boolean;\r\n    inline: boolean;\r\n    change: (s: string) => any;\r\n    connected?: boolean;\r\n    index?: number\r\n}\r\n\r\nclass RadioItem extends React.Component<iRadioItem, null> {\r\n    guid: string;\r\n\r\n    constructor(props: iRadioItem, context: Object){\r\n        super(props, context);\r\n        this.guid = makeGuid()\r\n    }\r\n\r\n\r\n    render() {\r\n        let style = {};\r\n        if (this.props.inline) {\r\n            style = {\r\n                display: 'inline-block',\r\n                padding: '0 5px'\r\n            };\r\n        }\r\n\r\n        let props = {\r\n            id: this.guid,\r\n            type: \"radio\",\r\n            name: this.props.groupId,\r\n            value: typeof this.props.index == 'undefined' ? this.props.text : this.props.index.toFixed(),\r\n            onChange: (evt: ChangeEvent<HTMLInputElement>) => {\r\n                this.props.change(evt.target.value);\r\n                evt.target.checked = true;\r\n            },\r\n            checked: this.props.checked,\r\n            defaultChecked:  this.props.checked\r\n        };\r\n\r\n        if (this.props.connected) {\r\n            delete props.defaultChecked;\r\n        } else {\r\n            delete props.checked\r\n        }\r\n\r\n        return <li style={style}>\r\n            <input {...props}/>\r\n            <label htmlFor={this.guid}>{this.props.text}</label>\r\n        </li>;\r\n    }\r\n}\r\n\r\ninterface iRadioBase {\r\n    title: string;\r\n    items: string[];\r\n    callback: (val: string) => any;\r\n    inline?: boolean;\r\n    selectedValueOrIndex: string|number;\r\n    connected: boolean;\r\n}\r\n\r\nclass RadioBase extends React.Component<iRadioBase, null> {\r\n    inline: boolean;\r\n    groupId: string;\r\n\r\n    constructor(props: iRadioBase, context: Object) {\r\n        super(props, context);\r\n        this.inline = this.props.inline || false;\r\n        this.groupId = this.props.title.toLowerCase().replace(/ /g, '');\r\n    }\r\n\r\n    render() {\r\n        let style = {};\r\n        if (this.inline) {\r\n            style = {\r\n                display: 'inline-block',\r\n                padding: '0 5px'\r\n            }\r\n        }\r\n\r\n        let arr = [];\r\n\r\n        for (let i = 0; i < this.props.items.length; i++) {\r\n\r\n            let itemProps = {\r\n                groupId: this.groupId,\r\n                text: this.props.items[i],\r\n                inline: this.props.inline,\r\n                change: (s: string) => (this.props.callback(s)),\r\n                key: this.props.items[i],\r\n                connected: this.props.connected || false,\r\n                checked: false,\r\n                index: i\r\n            };\r\n\r\n            if (typeof this.props.selectedValueOrIndex == 'number'){\r\n                itemProps.checked = i == this.props.selectedValueOrIndex;\r\n            } else {\r\n                itemProps.checked = this.props.items[i] == this.props.selectedValueOrIndex;\r\n                delete itemProps.index\r\n            }\r\n\r\n            arr.push(<RadioItem {...itemProps}/>)\r\n        }\r\n\r\n        return <div className=\"radio-list\">\r\n            <h4>{this.props.title}</h4>\r\n            <ul style={{listStyle: 'none'}}>\r\n                {arr}\r\n            </ul>\r\n        </div>\r\n    }\r\n}\r\n\r\n\r\nexport class Radio extends React.Component<{ title: string, items: string[], callback: (val: string) => any, inline?: boolean, defaultValue: string }, null> {\r\n\r\n    render() {\r\n        return <RadioBase\r\n            title={this.props.title}\r\n            items={this.props.items}\r\n            callback={this.props.callback}\r\n            inline={this.props.inline}\r\n            selectedValueOrIndex={this.props.defaultValue}\r\n            connected={false}\r\n        />\r\n    }\r\n}\r\n\r\nexport class RadioConnected extends React.Component<{ title: string, items: string[], callback: (val: string) => any, inline?: boolean, selectedIndex: number }, null> {\r\n\r\n    render() {\r\n        return <RadioBase\r\n            title={this.props.title}\r\n            items={this.props.items}\r\n            callback={this.props.callback}\r\n            inline={this.props.inline}\r\n            selectedValueOrIndex={this.props.selectedIndex}\r\n            connected={true}\r\n        />\r\n    }\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/SelectArea.d.ts b/dist/reactComponents/SelectArea.d.ts
similarity index 100%
rename from dist/reactCompoents/SelectArea.d.ts
rename to dist/reactComponents/SelectArea.d.ts
diff --git a/dist/reactCompoents/SelectArea.jsx b/dist/reactComponents/SelectArea.jsx
similarity index 100%
rename from dist/reactCompoents/SelectArea.jsx
rename to dist/reactComponents/SelectArea.jsx
diff --git a/dist/reactComponents/SelectArea.jsx.map b/dist/reactComponents/SelectArea.jsx.map
new file mode 100644
index 0000000000000000000000000000000000000000..728631ad7771dd93ce9a385ebe49cb4856090118
--- /dev/null
+++ b/dist/reactComponents/SelectArea.jsx.map
@@ -0,0 +1 @@
+{"version":3,"file":"SelectArea.jsx","sourceRoot":"","sources":["../../src/reactComponents/SelectArea.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAEH,iDAAsC;AACtC,8BAAiC;AACjC,2EAAsE;AACtE,wDAA2D;AAC3D,6CAAwC;AACxC,6CAAuC;AAOvC;IAAgC,8BAAkC;IAW9D,oBAAY,KAAkB,EAAE,OAAe;QAA/C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAgDxB;QA9CG,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAC3B,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAE3B,KAAI,CAAC,QAAQ,GAAG,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;QAEpC,KAAI,CAAC,WAAW,GAAG,IAAI,gCAAsB,CAAC,EAAE,EAC5C;YACI,KAAK,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;gBACtB,IAAI,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC;oBACpB,KAAK,EAAE,wBAAwB;iBAClC,CAAC;gBACF,MAAM,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC;oBACxB,KAAK,EAAE,kBAAkB;oBACzB,KAAK,EAAE,CAAC;iBACX,CAAC;aACL,CAAC;YACF,SAAS,EAAE,EAAC,cAAc,EAAE,sBAAQ,EAAE,iBAAiB,EAAE,sBAAQ,EAAC;SACrE,CAAC,CAAC;QAEP,KAAI,CAAC,IAAI,GAAG,IAAI,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC;YAChC,MAAM,EAAE,KAAI,CAAC,WAAW,CAAC,MAAM;YAC/B,IAAI,EAAE,SAAS;SAClB,CAAC,CAAC;QAEH,KAAI,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,EAAE,UAAC,GAAoD;YACzE,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;YACrC,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;YAEzC,IAAI,IAAI,GAAG,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YACrC,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC;YAE7B,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;YAE9C,UAAU,CAAC;gBACP,KAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAI,CAAC,IAAI,CAAC,CAAC;YAC1C,CAAC,EAAE,GAAG,CAAC,CAAC;YAER,IAAI,SAAS,GAAG,EAAE,CAAC;YACnB,IAAI,GAAG,GAAG,SAAS,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,CAAC;YAExC,GAAG,CAAC,CAAW,UAAG,EAAH,WAAG,EAAH,iBAAG,EAAH,IAAG;gBAAb,IAAI,EAAE,YAAA;gBACP,SAAS,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;aAClG;YAED,KAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;;IACP,CAAC;IAGD,sCAAiB,GAAjB;QAAA,iBAIC;QAHG,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAChF,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAChF,iBAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,UAAC,CAAC,IAAM,KAAI,CAAC,GAAG,GAAG,CAAC,CAAA,CAAA,CAAC,CAAC,CAAA;IAChF,CAAC;IAGD,4BAAO,GAAP;QACI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;YACZ,MAAM,CAAC;QACX,CAAC;QAED,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;QACzC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;QAErC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,2BAAM,GAAN;QACI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;YACZ,MAAM,CAAC;QACX,CAAC;QACD,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;QACrC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;QAEzC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,2BAAM,GAAN;QAAA,iBAWC;QAVG,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAC,MAAM,EAAE,MAAM,EAAC,CAAC,CAChC;YAAA,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;YAChC,KAAI,CAAC,OAAO,EAAE,CAAA;QAClB,CAAC,CAAC,CAAC;YACH,EAAE,MAAM,CACR;YAAA,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;YAChC,KAAI,CAAC,MAAM,EAAE,CAAA;QACjB,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAC,OAAO,EAAE,MAAM,EAAC,CAAC,CAAC;YAC7B,EAAE,MAAM,CACZ;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IACL,iBAAC;AAAD,CAAC,AA5GD,CAAgC,qBAAK,CAAC,SAAS,GA4G9C;AA5GY,gCAAU","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\n\r\nimport {React} from './reactAndRedux';\r\nimport ol = require('custom-ol');\r\nimport LayerBaseVectorGeoJson from '../layers/LayerBaseVectorGeoJson';\r\nimport {proj4326, proj3857} from '../olHelpers/projections'\r\nimport makeGuid from '../util/makeGuid';\r\nimport getMap from './helpers/get_map';\r\n\r\nexport interface iSelectArea{\r\n    map: ol.Map | (() => ol.Map);\r\n    callback: (coords: Array<number[]>) => any\r\n}\r\n\r\nexport class SelectArea extends React.Component<iSelectArea, null> {\r\n    map: ol.Map;\r\n    callback: (coords: Array<number[]>) => any;\r\n    areaOverlay: LayerBaseVectorGeoJson;\r\n    draw: ol.interaction.Draw;\r\n    selectId: string;\r\n    cancelId: string;\r\n    selectButton: HTMLButtonElement;\r\n    cancelButton: HTMLButtonElement;\r\n\r\n\r\n    constructor(props: iSelectArea, context: Object) {\r\n        super(props, context);\r\n\r\n        this.selectId = makeGuid();\r\n        this.cancelId = makeGuid();\r\n\r\n        this.callback = this.props.callback;\r\n\r\n        this.areaOverlay = new LayerBaseVectorGeoJson('',\r\n            {\r\n                style: new ol.style.Style({\r\n                    fill: new ol.style.Fill({\r\n                        color: 'rgba(255, 0, 237, 0.1)'\r\n                    }),\r\n                    stroke: new ol.style.Stroke({\r\n                        color: 'rgb(255, 0, 237)',\r\n                        width: 2\r\n                    })\r\n                }),\r\n                transform: {dataProjection: proj4326, featureProjection: proj3857}\r\n            });\r\n\r\n        this.draw = new ol.interaction.Draw({\r\n            source: this.areaOverlay.source,\r\n            type: 'Polygon'\r\n        });\r\n\r\n        this.draw.on('drawend', (evt: {feature: {getGeometry: () => ol.geom.Polygon}}) => {\r\n            this.selectButton.style.display = '';\r\n            this.cancelButton.style.display = 'none';\r\n\r\n            let geom = evt.feature.getGeometry();\r\n            let geomClone = geom.clone();\r\n\r\n            geomClone.transform('EPSG:3857', 'EPSG:4326');\r\n\r\n            setTimeout(() => {\r\n                this.map.removeInteraction(this.draw);\r\n            }, 100);\r\n\r\n            let outCoords = [];\r\n            let ccc = geomClone.getCoordinates()[0];\r\n\r\n            for (let cc of ccc) {\r\n                outCoords.push([Math.round(cc[0] * 1000000) / 1000000, Math.round(cc[1] * 1000000) / 1000000]);\r\n            }\r\n\r\n            this.callback(outCoords);\r\n        });\r\n    }\r\n\r\n\r\n    componentDidMount() {\r\n        this.selectButton = document.getElementById(this.selectId) as HTMLButtonElement;\r\n        this.cancelButton = document.getElementById(this.cancelId) as HTMLButtonElement;\r\n        getMap(this.props.map, this.areaOverlay.olLayer).then((m) => {this.map = m})\r\n    }\r\n\r\n\r\n    setArea() {\r\n        if (!this.map) {\r\n            return;\r\n        }\r\n\r\n        this.selectButton.style.display = 'none';\r\n        this.cancelButton.style.display = '';\r\n\r\n        this.areaOverlay.source.clear();\r\n        this.map.addInteraction(this.draw);\r\n        this.callback(null);\r\n    }\r\n\r\n    cancel() {\r\n        if (!this.map) {\r\n            return;\r\n        }\r\n        this.selectButton.style.display = '';\r\n        this.cancelButton.style.display = 'none';\r\n\r\n        this.areaOverlay.source.clear();\r\n        this.map.removeInteraction(this.draw);\r\n\r\n        this.callback(null);\r\n    }\r\n\r\n    render() {\r\n        return <div style={{margin: '10px'}}>\r\n            <button id={this.selectId} onClick={() => {\r\n                this.setArea()\r\n            }}>Select Area\r\n            </button>\r\n            <button id={this.cancelId} onClick={() => {\r\n                this.cancel()\r\n            }} style={{display: 'none'}}>Cancel\r\n            </button>\r\n        </div>\r\n    }\r\n}\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/Slider.d.ts b/dist/reactComponents/Slider.d.ts
similarity index 100%
rename from dist/reactCompoents/Slider.d.ts
rename to dist/reactComponents/Slider.d.ts
diff --git a/dist/reactCompoents/Slider.jsx b/dist/reactComponents/Slider.jsx
similarity index 100%
rename from dist/reactCompoents/Slider.jsx
rename to dist/reactComponents/Slider.jsx
diff --git a/dist/reactComponents/Slider.jsx.map b/dist/reactComponents/Slider.jsx.map
new file mode 100644
index 0000000000000000000000000000000000000000..575922819d3c55b1e39674ba04399f3b4ca9854f
--- /dev/null
+++ b/dist/reactComponents/Slider.jsx.map
@@ -0,0 +1 @@
+{"version":3,"file":"Slider.jsx","sourceRoot":"","sources":["../../src/reactComponents/Slider.tsx"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;AAGH,iDAAsC;AACtC,6CAAwC;AAaxC;IAA4B,0BAA8B;IAetD,gBAAY,KAAc,EAAE,OAAe;QAA3C,YACI,kBAAM,KAAK,EAAE,OAAO,CAAC,SAMxB;QALG,KAAI,CAAC,GAAG,GAAG,kBAAQ,EAAE,CAAC;QACtB,KAAI,CAAC,QAAQ,GAAG,kBAAQ,EAAE,CAAC;QAC3B,KAAI,CAAC,MAAM,GAAG,kBAAQ,EAAE,CAAC;QACzB,KAAI,CAAC,WAAW,GAAG,kBAAQ,EAAE,CAAC;QAC9B,KAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;IACzB,CAAC;IAED,kCAAiB,GAAjB;QACI,IAAI,CAAC,EAAE,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,CAAqB,CAAC;QAChE,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;QACtC,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAsB,CAAC;QAC/E,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,MAAM,CAAsB,CAAC;QAC3E,IAAI,CAAC,cAAc,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAsB,CAAC;IACzF,CAAC;IAED,8BAAa,GAAb;QAEI,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC;QACzC,IAAI,CAAC,EAAE,CAAC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC;QAChC,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC;IAC5C,CAAC;IAED,6BAAY,GAAZ;QAAA,iBAcC;QAbG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC;YACxB,IAAI,GAAG,GAAG,UAAU,CAAC,KAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YACpC,GAAG,IAAI,KAAI,CAAC,IAAI,CAAC;YACjB,EAAE,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,MAAM,CAAC,CAAC,CAAC;gBACpB,GAAG,GAAG,KAAI,CAAC,MAAM,CAAA;YACrB,CAAC;YAED,KAAI,CAAC,EAAE,CAAC,KAAK,GAAG,GAAG,CAAC,QAAQ,EAAE,CAAC;YAC/B,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YACvB,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,KAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3C,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC;IAC5C,CAAC;IAED,4BAAW,GAAX;QACI,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,CAAC,aAAa,EAAE,CAAC;IACzB,CAAC;IAED,+BAAc,GAAd;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA,CAAC;YACd,IAAI,CAAC,WAAW,EAAE,CAAC;YACnB,IAAI,CAAC,YAAY,EAAE,CAAC;QACxB,CAAC;IACL,CAAC;IAGD,uBAAM,GAAN;QAAA,iBA8DC;QA5DG,IAAI,KAAK,GAAG;YACR,EAAE,EAAE,IAAI,CAAC,GAAG;YACZ,GAAG,EAAE,CAAC;YACN,IAAI,EAAE,OAAO;YACb,QAAQ,EAAE,UAAC,GAAkC,IAAM,KAAI,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA,CAAA,CAAC;YACnG,KAAK,EAAE,EAAC,KAAK,EAAE,MAAM,EAAC;YACtB,GAAG,EAAE,KAAK;YACV,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,EAAE;YAClC,YAAY,EAAE,GAAG;SACpB,CAAC;QAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA,CAAC;YAClB,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;YACxC,KAAK,CAAC,IAAI,GAAG,GAAG,CAAC;QACrB,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA,CAAC;YAClB,OAAO,KAAK,CAAC,YAAY,CAAC;YAC1B,+CAA+C;QACnD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,KAAK,CAAC,KAAK,CAAC;YACnB,+BAA+B;QACnC,CAAC;QAGD,IAAI,KAAK,GAAG,IAAI,CAAC;QACjB,IAAI,IAAI,GAAG,IAAI,CAAC;QAChB,IAAI,cAAc,GAAG,IAAI,CAAC;QAE1B,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;YACrB,KAAK,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;gBACxC,KAAI,CAAC,YAAY,EAAE,CAAA;YACvB,CAAC,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;YAElB,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;gBACrC,KAAI,CAAC,WAAW,EAAE,CAAA;YACtB,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YAEjB,cAAc,GAAG,CAAC,IAAI,CACtB;YAAA,CAAC,KAAK,CAAC,YAAY,EAAE,KAAK,CAC1B;YAAA,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,QAAQ,CAAC,CAAC,cAAO,KAAI,CAAC,cAAc,EAAE,CAAA,CAAA,CAAC,CAAC,CACrF;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAC/B;gBAAA,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,CACpC;YAAA,EAAE,MAAM,CACR;YAAA,EAAE,IAAI,CAAC,CAAC;QACZ,CAAC;QAED,MAAM,CAAC,CAAC,GAAG,CACN;aAAA,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAClB;YAAA,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,cAAc,CAChC;QAAA,EAAE,GAAG,CAAC,CAAA;IACV,CAAC;IAEL,aAAC;AAAD,CAAC,AAvID,CAA4B,qBAAK,CAAC,SAAS,GAuI1C;AAvIY,wBAAM","sourcesContent":["/**\r\n * Created by glenn on 7/6/2017.\r\n */\r\n\r\n\r\nimport {React} from './reactAndRedux';\r\nimport makeGuid from '../util/makeGuid';\r\nimport {ChangeEvent} from \"react\";\r\n\r\n\r\n\r\n\r\nexport interface iSlider {\r\n    change: (d: number) => any;\r\n    steps?: number;\r\n    animate?: boolean;\r\n    value?: number;\r\n}\r\n\r\nexport class Slider extends React.Component<iSlider, null>{\r\n    uid: string;\r\n    startUid: string;\r\n    endUid: string;\r\n    intervalUid: string;\r\n    el: HTMLInputElement;\r\n    startButton: HTMLButtonElement;\r\n    endButton: HTMLButtonElement;\r\n    intervalSelect: HTMLSelectElement;\r\n    interval: number;\r\n    running: boolean;\r\n    minVal: number;\r\n    maxVal: number;\r\n    step: number;\r\n\r\n    constructor(props: iSlider, context: Object) {\r\n        super(props, context);\r\n        this.uid = makeGuid();\r\n        this.startUid = makeGuid();\r\n        this.endUid = makeGuid();\r\n        this.intervalUid = makeGuid();\r\n        this.running = false;\r\n    }\r\n\r\n    componentDidMount() {\r\n        this.el = document.getElementById(this.uid) as HTMLInputElement;\r\n        this.minVal = parseFloat(this.el.min);\r\n        this.maxVal = parseFloat(this.el.max);\r\n        this.step = parseFloat(this.el.step);\r\n        this.startButton = document.getElementById(this.startUid) as HTMLButtonElement;\r\n        this.endButton = document.getElementById(this.endUid) as HTMLButtonElement;\r\n        this.intervalSelect = document.getElementById(this.intervalUid) as HTMLSelectElement;\r\n    }\r\n\r\n    updateRunning() {\r\n\r\n        this.startButton.disabled = this.running;\r\n        this.el.disabled = this.running;\r\n        this.endButton.disabled = !this.running;\r\n    }\r\n\r\n    startAnimate() {\r\n        this.running = true;\r\n        this.updateRunning();\r\n        this.interval = setInterval(() => {\r\n            let val = parseFloat(this.el.value);\r\n            val += this.step;\r\n            if (val > this.maxVal) {\r\n                val = this.minVal\r\n            }\r\n\r\n            this.el.value = val.toString();\r\n            this.props.change(val);\r\n            console.log(parseFloat(this.el.value));\r\n        }, parseInt(this.intervalSelect.value));\r\n    }\r\n\r\n    stopAnimate() {\r\n        clearInterval(this.interval);\r\n        this.running = false;\r\n        this.updateRunning();\r\n    }\r\n\r\n    restartAnimate(){\r\n        if (this.running){\r\n            this.stopAnimate();\r\n            this.startAnimate();\r\n        }\r\n    }\r\n\r\n\r\n    render() {\r\n\r\n        let attrs = {\r\n            id: this.uid,\r\n            min: 0,\r\n            type: 'range',\r\n            onChange: (evt: ChangeEvent<HTMLInputElement>) => {this.props.change(parseFloat(evt.target.value))},\r\n            style: {width: '100%'},\r\n            max: \"100\",\r\n            step: '0.1',\r\n            value: this.props.value.toString(),\r\n            defaultValue: \"0\"\r\n        };\r\n\r\n        if (this.props.steps){\r\n            attrs.max = this.props.steps.toString();\r\n            attrs.step = '1';\r\n        }\r\n\r\n        if (this.props.value){\r\n            delete attrs.defaultValue;\r\n            // attrs['value'] = this.props.value.toString()\r\n        } else {\r\n            delete attrs.value;\r\n            // attrs['defaultValue'] = \"0\";\r\n        }\r\n\r\n\r\n        let start = null;\r\n        let stop = null;\r\n        let intervalSelect = null;\r\n\r\n        if (this.props.animate) {\r\n            start = <button id={this.startUid} onClick={() => {\r\n                this.startAnimate()\r\n            }}>Start</button>;\r\n\r\n            stop = <button id={this.endUid} onClick={() => {\r\n                this.stopAnimate()\r\n            }}>Stop</button>;\r\n\r\n            intervalSelect = <span>\r\n            <label>Interval (s)</label>\r\n            <select defaultValue=\"200\" id={this.intervalUid} onChange={() => {this.restartAnimate()}}>\r\n                <option value=\"100\">0.1</option>\r\n                <option value=\"200\">0.2</option>\r\n                <option value=\"300\">0.3</option>\r\n                <option value=\"400\">0.4</option>\r\n                <option value=\"500\">0.5</option>\r\n                <option value=\"600\">0.6</option>\r\n                <option value=\"700\">0.7</option>\r\n                <option value=\"800\">0.8</option>\r\n                <option value=\"900\">0.9</option>\r\n                <option value=\"1000\">1.0</option>\r\n            </select>\r\n            </span>;\r\n        }\r\n\r\n        return <div>\r\n             <input {...attrs}/>\r\n            {start}{stop}{intervalSelect}\r\n        </div>\r\n    }\r\n\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/helpers/dateFormat.d.ts b/dist/reactComponents/helpers/dateFormat.d.ts
similarity index 100%
rename from dist/reactCompoents/helpers/dateFormat.d.ts
rename to dist/reactComponents/helpers/dateFormat.d.ts
diff --git a/dist/reactCompoents/helpers/dateFormat.js b/dist/reactComponents/helpers/dateFormat.js
similarity index 100%
rename from dist/reactCompoents/helpers/dateFormat.js
rename to dist/reactComponents/helpers/dateFormat.js
diff --git a/dist/reactComponents/helpers/dateFormat.js.map b/dist/reactComponents/helpers/dateFormat.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..f9eda5763ac83ffac150187f3e2ec27b1612ac1f
--- /dev/null
+++ b/dist/reactComponents/helpers/dateFormat.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"dateFormat.js","sourceRoot":"","sources":["../../../src/reactComponents/helpers/dateFormat.ts"],"names":[],"mappings":"AAAA;;GAEG;;;AAEH,sBAA6B,OAAe;IACxC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAE/B,IAAI,EAAE,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAChC,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAC3B,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAE3B,IAAI,GAAG,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAC7B,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAEtB,MAAM,CAAC,GAAG,CAAC;AACf,CAAC;AAXD,oCAWC;AAED,sBAA6B,GAAS,EAAE,OAAsB;IAAtB,wBAAA,EAAA,cAAsB;IAC1D,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC;IAEjC,EAAE,CAAC,CAAC,OAAO,CAAC,CAAA,CAAC;QACT,EAAE,GAAG,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACpC,CAAC,GAAI,CAAC,CAAC,MAAM,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,GAAI,CAAC,CAAE;IACvC,CAAC;IAED,MAAM,CAAI,EAAE,SAAI,CAAC,SAAI,GAAG,CAAC,WAAW,EAAI,CAAC;AAC7C,CAAC;AAVD,oCAUC","sourcesContent":["/**\r\n * Created by glenn on 6/13/2017.\r\n */\r\n\r\nexport function stringToDate(dateStr: string): Date {\r\n    let parts = dateStr.split('/');\r\n\r\n    let mn = parseInt(parts[0]) - 1;\r\n    let d = parseInt(parts[1]);\r\n    let y = parseInt(parts[2]);\r\n\r\n    let dte = new Date(y, mn, d);\r\n    dte.setHours(0, 0, 0);\r\n\r\n    return dte;\r\n}\r\n\r\nexport function dateToString(dte: Date, zeroPad:boolean = true): string {\r\n    let mn = (dte.getMonth() + 1).toString();\r\n    let d = dte.getDate().toString();\r\n\r\n    if (zeroPad){\r\n        mn = mn.length == 1 ? '0' + mn : mn;\r\n        d  = d.length == 1 ? '0' + d  : d ;\r\n    }\r\n\r\n    return `${mn}/${d}/${dte.getFullYear()}`;\r\n}"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/helpers/get_map.d.ts b/dist/reactComponents/helpers/get_map.d.ts
similarity index 100%
rename from dist/reactCompoents/helpers/get_map.d.ts
rename to dist/reactComponents/helpers/get_map.d.ts
diff --git a/dist/reactCompoents/helpers/get_map.js b/dist/reactComponents/helpers/get_map.js
similarity index 100%
rename from dist/reactCompoents/helpers/get_map.js
rename to dist/reactComponents/helpers/get_map.js
diff --git a/dist/reactComponents/helpers/get_map.js.map b/dist/reactComponents/helpers/get_map.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..e0789e7fb14b796f7f3f560d7b5657ded02f5656
--- /dev/null
+++ b/dist/reactComponents/helpers/get_map.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"get_map.js","sourceRoot":"","sources":["../../../src/reactComponents/helpers/get_map.ts"],"names":[],"mappings":";;AAKA,mBAAyB,GAA4B,EAAE,KAAoB;IACvE,MAAM,CAAC,IAAI,OAAO,CAAC,UAAC,OAAO,EAAE,MAAM;QAE/B,EAAE,CAAC,CAAC,OAAO,GAAG,IAAI,UAAU,CAAC,CAAC,CAAC;YAC3B,IAAI,QAAM,GAAG,GAAmB,CAAC;YAEjC,IAAI,GAAC,GAAG,WAAW,CAAC;gBAChB,IAAI,CAAC,GAAG,QAAM,EAAE,CAAC;gBAEjB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACJ,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAClB,aAAa,CAAC,GAAC,CAAC,CAAC;oBACjB,OAAO,CAAC,CAAC,CAAC,CAAC;oBAC/B;mDAC+B;gBACf,CAAC;YACL,CAAC,EAAE,EAAE,CAAC,CAAC;QACX,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,GAAG,GAAa,CAAC;YACtB,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;YAClB,OAAO,CAAC,CAAC,CAAC,CAAC;QACf,CAAC;IACL,CAAC,CAAC,CAAC;AACP,CAAC;AAvBD,4BAuBC","sourcesContent":["/**\r\n * Created by glenn on 7/6/2017.\r\n */\r\nimport ol = require('custom-ol');\r\n\r\nexport default function (map: ol.Map | (() => ol.Map), layer: ol.layer.Base): Promise<ol.Map> {\r\n    return new Promise((resolve, reject) => {\r\n\r\n        if (typeof map == 'function') {\r\n            let getMap = map as () => ol.Map;\r\n\r\n            let g = setInterval(() => {\r\n                let m = getMap();\r\n\r\n                if (m) {\r\n                    m.addLayer(layer);\r\n                    clearInterval(g);\r\n                    resolve(m);\r\n/*                    console.log(m);\r\n                    return m;*/\r\n                }\r\n            }, 15);\r\n        } else {\r\n            let m = map as ol.Map;\r\n            m.addLayer(layer);\r\n            resolve(m);\r\n        }\r\n    });\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/reactCompoents/reactAndRedux.d.ts b/dist/reactComponents/reactAndRedux.d.ts
similarity index 100%
rename from dist/reactCompoents/reactAndRedux.d.ts
rename to dist/reactComponents/reactAndRedux.d.ts
diff --git a/dist/reactCompoents/reactAndRedux.js b/dist/reactComponents/reactAndRedux.js
similarity index 100%
rename from dist/reactCompoents/reactAndRedux.js
rename to dist/reactComponents/reactAndRedux.js
diff --git a/dist/reactComponents/reactAndRedux.js.map b/dist/reactComponents/reactAndRedux.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..d941b75a78a0d1bff5ab3a98690c6b47c9d6802c
--- /dev/null
+++ b/dist/reactComponents/reactAndRedux.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"reactAndRedux.js","sourceRoot":"","sources":["../../src/reactComponents/reactAndRedux.ts"],"names":[],"mappings":";;AAAA;;GAEG;AACH,iCAAuC;AACvC,wCAA8C;AAC9C,4CAAkD;AAClD,iCAAuC;AAI1B,QAAA,OAAO,GAAG,kBAAU,CAAC,OAAO,CAAC;AAC7B,QAAA,QAAQ,GAAG,kBAAU,CAAC,QAAQ,CAAC;AAC5C,mDAAmD;AACtC,QAAA,eAAe,GAAG,aAAK,CAAC,eAAe,CAAC;AACxC,QAAA,WAAW,GAAG,aAAK,CAAC,WAAW,CAAC","sourcesContent":["/**\r\n * Created by glenn on 6/12/2017.\r\n */\r\nexport import React = require('react');\r\nexport import ReactDom = require('react-dom');\r\nexport import ReactRedux = require('react-redux');\r\nexport import Redux = require('redux');\r\n\r\n\r\n\r\nexport const connect = ReactRedux.connect;\r\nexport const Provider = ReactRedux.Provider;\r\n// export { connect, Provider } from 'react-redux';\r\nexport const combineReducers = Redux.combineReducers;\r\nexport const createStore = Redux.createStore;\r\n\r\n// export {combineReducers, createStore, Store, } from 'redux';\r\n\r\nexport interface iAction{\r\n    type: string;\r\n}\r\n\r\n\r\n"]}
\ No newline at end of file
diff --git a/doc/classes/_slider.html b/doc/classes/_slider.html
index 67d4e673e5934ae04091ba4d6fb0f6af6378ce0d..a47fd006429e48e7d1803025357f743732b818dd 100644
--- a/doc/classes/_slider.html
+++ b/doc/classes/_slider.html
@@ -140,7 +140,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L75">collections/Sliders.ts:75</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L75">collections/Sliders.ts:75</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -172,7 +172,7 @@
 					<div class="tsd-signature tsd-kind-icon">_dropdown<wbr>Selection<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L75">collections/Sliders.ts:75</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L75">collections/Sliders.ts:75</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -182,7 +182,7 @@
 					<div class="tsd-signature tsd-kind-icon">_locked<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L57">collections/Sliders.ts:57</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L57">collections/Sliders.ts:57</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -192,7 +192,7 @@
 					<div class="tsd-signature tsd-kind-icon">_max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L56">collections/Sliders.ts:56</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L56">collections/Sliders.ts:56</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -202,7 +202,7 @@
 					<div class="tsd-signature tsd-kind-icon">_min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L55">collections/Sliders.ts:55</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L55">collections/Sliders.ts:55</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<div class="tsd-signature tsd-kind-icon">_weight<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L61">collections/Sliders.ts:61</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L61">collections/Sliders.ts:61</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<div class="tsd-signature tsd-kind-icon">_weight<wbr>Default<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L60">collections/Sliders.ts:60</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L60">collections/Sliders.ts:60</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -232,7 +232,7 @@
 					<div class="tsd-signature tsd-kind-icon">at<wbr>Max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L59">collections/Sliders.ts:59</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L59">collections/Sliders.ts:59</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -242,7 +242,7 @@
 					<div class="tsd-signature tsd-kind-icon">at<wbr>Min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L58">collections/Sliders.ts:58</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L58">collections/Sliders.ts:58</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -252,7 +252,7 @@
 					<div class="tsd-signature tsd-kind-icon">chk<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L71">collections/Sliders.ts:71</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L71">collections/Sliders.ts:71</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -262,7 +262,7 @@
 					<div class="tsd-signature tsd-kind-icon">dom<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L63">collections/Sliders.ts:63</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L63">collections/Sliders.ts:63</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -272,7 +272,7 @@
 					<div class="tsd-signature tsd-kind-icon">html<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L62">collections/Sliders.ts:62</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L62">collections/Sliders.ts:62</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -282,7 +282,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<wbr>High<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L67">collections/Sliders.ts:67</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L67">collections/Sliders.ts:67</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -292,7 +292,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<wbr>Low<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L66">collections/Sliders.ts:66</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L66">collections/Sliders.ts:66</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -302,7 +302,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<wbr>Val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L68">collections/Sliders.ts:68</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L68">collections/Sliders.ts:68</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -312,7 +312,7 @@
 					<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L64">collections/Sliders.ts:64</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L64">collections/Sliders.ts:64</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -322,7 +322,7 @@
 					<div class="tsd-signature tsd-kind-icon">selected<wbr>Param<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L73">collections/Sliders.ts:73</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L73">collections/Sliders.ts:73</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -332,7 +332,7 @@
 					<div class="tsd-signature tsd-kind-icon">selected<wbr>Param<wbr>Default<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L74">collections/Sliders.ts:74</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L74">collections/Sliders.ts:74</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -342,7 +342,7 @@
 					<div class="tsd-signature tsd-kind-icon">selection<wbr>Box<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L70">collections/Sliders.ts:70</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L70">collections/Sliders.ts:70</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -352,7 +352,7 @@
 					<div class="tsd-signature tsd-kind-icon">slider<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L69">collections/Sliders.ts:69</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L69">collections/Sliders.ts:69</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -370,7 +370,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L185">collections/Sliders.ts:185</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L185">collections/Sliders.ts:185</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -381,7 +381,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L193">collections/Sliders.ts:193</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L193">collections/Sliders.ts:193</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -413,7 +413,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L226">collections/Sliders.ts:226</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L226">collections/Sliders.ts:226</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -424,7 +424,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L234">collections/Sliders.ts:234</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L234">collections/Sliders.ts:234</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -456,7 +456,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L204">collections/Sliders.ts:204</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L204">collections/Sliders.ts:204</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -467,7 +467,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L212">collections/Sliders.ts:212</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L212">collections/Sliders.ts:212</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -499,7 +499,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L248">collections/Sliders.ts:248</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L248">collections/Sliders.ts:248</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -510,7 +510,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L256">collections/Sliders.ts:256</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L256">collections/Sliders.ts:256</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -544,7 +544,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L127">collections/Sliders.ts:127</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L127">collections/Sliders.ts:127</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -575,7 +575,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L142">collections/Sliders.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L142">collections/Sliders.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -607,7 +607,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L171">collections/Sliders.ts:171</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L171">collections/Sliders.ts:171</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/commonsymbol.html b/doc/classes/commonsymbol.html
index f42c69c09b4222c9b8a9f2bf2561a12265a35eb4..0c22433e42ca9d5de2a229dd71b2c59e6c681bae 100644
--- a/doc/classes/commonsymbol.html
+++ b/doc/classes/commonsymbol.html
@@ -119,7 +119,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -150,7 +150,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Html<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -160,7 +160,7 @@
 					<div class="tsd-signature tsd-kind-icon">ol<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Style</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -170,7 +170,7 @@
 					<div class="tsd-signature tsd-kind-icon">opacity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -180,7 +180,7 @@
 					<div class="tsd-signature tsd-kind-icon">symbol<wbr>Obj<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iesrisymbol.html" class="tsd-signature-type">iEsriSymbol</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/datepick.html b/doc/classes/datepick.html
index 1a55a0dce3a607cf22b703b242dff8c22c81cd41..8df521ace27dd4a3723ce324d019cd1797fbfab2 100644
--- a/doc/classes/datepick.html
+++ b/doc/classes/datepick.html
@@ -137,7 +137,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L24">reactCompoents/DatePick.tsx:24</a></li>
+									<li>Defined in reactComponents/DatePick.tsx:24</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -173,7 +173,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L24">reactCompoents/DatePick.tsx:24</a></li>
+							<li>Defined in reactComponents/DatePick.tsx:24</li>
 						</ul>
 					</aside>
 				</section>
@@ -231,7 +231,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L31">reactCompoents/DatePick.tsx:31</a></li>
+									<li>Defined in reactComponents/DatePick.tsx:31</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -285,7 +285,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L43">reactCompoents/DatePick.tsx:43</a></li>
+									<li>Defined in reactComponents/DatePick.tsx:43</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
diff --git a/doc/classes/daterange.html b/doc/classes/daterange.html
index 94a22685d6635d0c1d3fe6663c0e66944e666665..1324f2ffe06dd87fb3a74cbe0c9c66921a0ad557 100644
--- a/doc/classes/daterange.html
+++ b/doc/classes/daterange.html
@@ -147,7 +147,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L39">reactCompoents/DateRange.tsx:39</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:39</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -183,7 +183,7 @@
 					<div class="tsd-signature tsd-kind-icon">end<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L36">reactCompoents/DateRange.tsx:36</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:36</li>
 						</ul>
 					</aside>
 				</section>
@@ -193,7 +193,7 @@
 					<div class="tsd-signature tsd-kind-icon">end<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;makeGuid()</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L32">reactCompoents/DateRange.tsx:32</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:32</li>
 						</ul>
 					</aside>
 				</section>
@@ -203,7 +203,7 @@
 					<div class="tsd-signature tsd-kind-icon">end<wbr>Input<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLInputElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L34">reactCompoents/DateRange.tsx:34</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:34</li>
 						</ul>
 					</aside>
 				</section>
@@ -213,7 +213,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L37">reactCompoents/DateRange.tsx:37</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:37</li>
 						</ul>
 					</aside>
 				</section>
@@ -223,7 +223,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L38">reactCompoents/DateRange.tsx:38</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:38</li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<div class="tsd-signature tsd-kind-icon">num<wbr>Days<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L39">reactCompoents/DateRange.tsx:39</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:39</li>
 						</ul>
 					</aside>
 				</section>
@@ -273,7 +273,7 @@
 					<div class="tsd-signature tsd-kind-icon">start<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L35">reactCompoents/DateRange.tsx:35</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:35</li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<div class="tsd-signature tsd-kind-icon">start<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;makeGuid()</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L31">reactCompoents/DateRange.tsx:31</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:31</li>
 						</ul>
 					</aside>
 				</section>
@@ -293,7 +293,7 @@
 					<div class="tsd-signature tsd-kind-icon">start<wbr>Input<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLInputElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L33">reactCompoents/DateRange.tsx:33</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:33</li>
 						</ul>
 					</aside>
 				</section>
@@ -321,7 +321,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L74">reactCompoents/DateRange.tsx:74</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:74</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -341,7 +341,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L68">reactCompoents/DateRange.tsx:68</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:68</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -395,7 +395,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L116">reactCompoents/DateRange.tsx:116</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:116</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
@@ -412,7 +412,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L97">reactCompoents/DateRange.tsx:97</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:97</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -435,7 +435,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L63">reactCompoents/DateRange.tsx:63</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:63</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -452,7 +452,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L78">reactCompoents/DateRange.tsx:78</a></li>
+									<li>Defined in reactComponents/DateRange.tsx:78</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/dayrange.html b/doc/classes/dayrange.html
index bdecd04f699abebcf29c433f9fc71c9a02747082..89c5cdc9df3357e82146b6efd33160d0f74d04a1 100644
--- a/doc/classes/dayrange.html
+++ b/doc/classes/dayrange.html
@@ -117,7 +117,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L13">domUtil/day-range.ts:13</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L13">domUtil/day-range.ts:13</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -157,7 +157,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$end<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L10">domUtil/day-range.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L10">domUtil/day-range.ts:10</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -167,7 +167,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$start<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L9">domUtil/day-range.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L9">domUtil/day-range.ts:9</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -177,7 +177,7 @@
 					<div class="tsd-signature tsd-kind-icon">_end<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L13">domUtil/day-range.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L13">domUtil/day-range.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -187,7 +187,7 @@
 					<div class="tsd-signature tsd-kind-icon">_max<wbr>Date<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L11">domUtil/day-range.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L11">domUtil/day-range.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -197,7 +197,7 @@
 					<div class="tsd-signature tsd-kind-icon">_start<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L12">domUtil/day-range.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L12">domUtil/day-range.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -207,7 +207,7 @@
 					<div class="tsd-signature tsd-kind-icon">_working<wbr>Day<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L8">domUtil/day-range.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L8">domUtil/day-range.ts:8</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -225,7 +225,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L88">domUtil/day-range.ts:88</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L88">domUtil/day-range.ts:88</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Date</span></h4>
@@ -233,7 +233,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L93">domUtil/day-range.ts:93</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L93">domUtil/day-range.ts:93</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -257,7 +257,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L61">domUtil/day-range.ts:61</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L61">domUtil/day-range.ts:61</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Date</span></h4>
@@ -265,7 +265,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L69">domUtil/day-range.ts:69</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L69">domUtil/day-range.ts:69</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/featurelayerproperties.html b/doc/classes/featurelayerproperties.html
index c6602ccf9d83b9a411e86b69e1477eebec63677c..6a39e39abbe5d4319415cf96f12b0bbe07374503 100644
--- a/doc/classes/featurelayerproperties.html
+++ b/doc/classes/featurelayerproperties.html
@@ -116,7 +116,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L47">olHelpers/mapPopupCls.ts:47</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L47">olHelpers/mapPopupCls.ts:47</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -172,7 +172,7 @@
 					<div class="tsd-signature tsd-kind-icon">esri<wbr>Layer<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L47">olHelpers/mapPopupCls.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L47">olHelpers/mapPopupCls.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -182,7 +182,7 @@
 					<div class="tsd-signature tsd-kind-icon">feature<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Feature</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L42">olHelpers/mapPopupCls.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L42">olHelpers/mapPopupCls.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -192,7 +192,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<span class="tsd-signature-symbol">:</span> <a href="layerbasevector.html" class="tsd-signature-type">LayerBaseVector</a><span class="tsd-signature-symbol"> | </span><a href="layeresrimapserver.html" class="tsd-signature-type">LayerEsriMapServer</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L43">olHelpers/mapPopupCls.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L43">olHelpers/mapPopupCls.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -202,7 +202,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<wbr>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L44">olHelpers/mapPopupCls.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L44">olHelpers/mapPopupCls.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<div class="tsd-signature tsd-kind-icon">popup<wbr>Content<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L46">olHelpers/mapPopupCls.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L46">olHelpers/mapPopupCls.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<div class="tsd-signature tsd-kind-icon">selection<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L45">olHelpers/mapPopupCls.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L45">olHelpers/mapPopupCls.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -239,7 +239,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L66">olHelpers/mapPopupCls.ts:66</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L66">olHelpers/mapPopupCls.ts:66</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
diff --git a/doc/classes/itslayercollection.html b/doc/classes/itslayercollection.html
index a2c692c8a008a7f1968231ca2cea6c188e94bf2d..5e4e89a5ed1571a90866ea2761f6149c65ed8a6b 100644
--- a/doc/classes/itslayercollection.html
+++ b/doc/classes/itslayercollection.html
@@ -112,7 +112,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L102">collections/ItsLayerCollection.ts:102</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L102">collections/ItsLayerCollection.ts:102</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -147,7 +147,7 @@
 					<div class="tsd-signature tsd-kind-icon">_layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="layeritsinventory.html" class="tsd-signature-type">LayerItsInventory</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L102">collections/ItsLayerCollection.ts:102</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L102">collections/ItsLayerCollection.ts:102</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -157,7 +157,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L101">collections/ItsLayerCollection.ts:101</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L101">collections/ItsLayerCollection.ts:101</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -174,7 +174,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L158">collections/ItsLayerCollection.ts:158</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L158">collections/ItsLayerCollection.ts:158</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/layerbase.html b/doc/classes/layerbase.html
index 6d8587fc9cb254bcc3dbd820ac5883bacca4a80d..7f300df55389dbe049802a0de880cd37212dda88 100644
--- a/doc/classes/layerbase.html
+++ b/doc/classes/layerbase.html
@@ -183,7 +183,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -223,7 +223,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$legend<wbr>Div<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<div class="tsd-signature tsd-kind-icon">_animate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -243,7 +243,7 @@
 					<div class="tsd-signature tsd-kind-icon">_apply<wbr>Collapse<wbr>Called<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -253,7 +253,7 @@
 					<div class="tsd-signature tsd-kind-icon">_id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -263,7 +263,7 @@
 					<div class="tsd-signature tsd-kind-icon">_legend<wbr>Checkbox<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -273,7 +273,7 @@
 					<div class="tsd-signature tsd-kind-icon">_legend<wbr>Collapse<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<div class="tsd-signature tsd-kind-icon">_legend<wbr>Content<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -293,7 +293,7 @@
 					<div class="tsd-signature tsd-kind-icon">_loaded<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -303,7 +303,7 @@
 					<div class="tsd-signature tsd-kind-icon">_max<wbr>Resolution<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -313,7 +313,7 @@
 					<div class="tsd-signature tsd-kind-icon">_max<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -323,7 +323,7 @@
 					<div class="tsd-signature tsd-kind-icon">_min<wbr>Resolution<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -333,7 +333,7 @@
 					<div class="tsd-signature tsd-kind-icon">_min<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -343,7 +343,7 @@
 					<div class="tsd-signature tsd-kind-icon">_name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -353,7 +353,7 @@
 					<div class="tsd-signature tsd-kind-icon">_ol<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Layer</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -363,7 +363,7 @@
 					<div class="tsd-signature tsd-kind-icon">_opacity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -373,7 +373,7 @@
 					<div class="tsd-signature tsd-kind-icon">_params<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -383,7 +383,7 @@
 					<div class="tsd-signature tsd-kind-icon">_source<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Source</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -393,7 +393,7 @@
 					<div class="tsd-signature tsd-kind-icon">_url<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -403,7 +403,7 @@
 					<div class="tsd-signature tsd-kind-icon">_visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -413,7 +413,7 @@
 					<div class="tsd-signature tsd-kind-icon">_z<wbr>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -423,7 +423,7 @@
 					<div class="tsd-signature tsd-kind-icon">load<wbr>Callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -441,7 +441,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -449,7 +449,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -473,7 +473,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -481,7 +481,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -505,7 +505,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -523,7 +523,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -556,7 +556,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -583,7 +583,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -610,7 +610,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -637,7 +637,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -664,7 +664,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -692,7 +692,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -710,7 +710,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -743,7 +743,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L431">layers/LayerBase.ts:431</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L431">layers/LayerBase.ts:431</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -766,7 +766,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -784,7 +784,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -818,7 +818,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -836,7 +836,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -869,7 +869,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L401">layers/LayerBase.ts:401</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L401">layers/LayerBase.ts:401</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -896,7 +896,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -924,7 +924,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -942,7 +942,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -975,7 +975,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -988,7 +988,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1019,7 +1019,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1047,7 +1047,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1070,7 +1070,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1098,7 +1098,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1115,7 +1115,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1138,7 +1138,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1155,7 +1155,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1172,7 +1172,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1194,7 +1194,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1217,7 +1217,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerbasevector.html b/doc/classes/layerbasevector.html
index 87d2c150018ded48ab485b4bda35c5c27cfdc84b..0f7f2909394b930f71e3027a7db4f72a7fad1a65 100644
--- a/doc/classes/layerbasevector.html
+++ b/doc/classes/layerbasevector.html
@@ -211,7 +211,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -252,7 +252,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -263,7 +263,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -274,7 +274,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -284,7 +284,7 @@
 					<div class="tsd-signature tsd-kind-icon">_auto<wbr>Load<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -295,7 +295,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -306,7 +306,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -317,7 +317,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -328,7 +328,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -339,7 +339,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -349,7 +349,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<span class="tsd-signature-symbol">:</span> <a href="mapmovecls.html" class="tsd-signature-type">MapMoveCls</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -359,7 +359,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Make<wbr>Get<wbr>Params<span class="tsd-signature-symbol">:</span> <a href="../interfaces/makemapmoveparams.html" class="tsd-signature-type">makeMapMoveParams</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -369,7 +369,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Params<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -380,7 +380,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -391,7 +391,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -402,7 +402,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -413,7 +413,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -424,7 +424,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -435,7 +435,7 @@
 					<aside class="tsd-sources">
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -445,7 +445,7 @@
 					<div class="tsd-signature tsd-kind-icon">_on<wbr>Demand<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -455,7 +455,7 @@
 					<div class="tsd-signature tsd-kind-icon">_on<wbr>Demand<wbr>Delay<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -466,7 +466,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -477,7 +477,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -487,7 +487,7 @@
 					<div class="tsd-signature tsd-kind-icon">_projection4326<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -497,7 +497,7 @@
 					<div class="tsd-signature tsd-kind-icon">_projection<wbr>Map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -508,7 +508,7 @@
 					<aside class="tsd-sources">
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -518,7 +518,7 @@
 					<div class="tsd-signature tsd-kind-icon">_style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Style</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Style</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">ol.StyleFunction</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -529,7 +529,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -540,7 +540,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -551,7 +551,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -562,7 +562,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -581,7 +581,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -590,7 +590,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -613,7 +613,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -635,7 +635,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -659,7 +659,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -668,7 +668,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -693,7 +693,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -712,7 +712,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -746,7 +746,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -773,7 +773,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -795,7 +795,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -822,7 +822,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -849,7 +849,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Projection</span></h4>
@@ -867,7 +867,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -895,7 +895,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -923,7 +923,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -951,7 +951,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -980,7 +980,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -999,7 +999,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1033,7 +1033,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Vector</span></h4>
@@ -1050,7 +1050,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1074,7 +1074,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1093,7 +1093,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1128,7 +1128,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1147,7 +1147,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1181,7 +1181,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1208,7 +1208,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1226,7 +1226,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1260,7 +1260,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1289,7 +1289,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1303,7 +1303,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1340,7 +1340,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1354,7 +1354,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1386,7 +1386,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1415,7 +1415,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1438,7 +1438,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L143">layers/LayerBaseVector.ts:143</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L143">layers/LayerBaseVector.ts:143</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1470,7 +1470,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1499,7 +1499,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1516,7 +1516,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1539,7 +1539,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1563,7 +1563,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1581,7 +1581,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1598,7 +1598,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1633,7 +1633,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L188">layers/LayerBaseVector.ts:188</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L188">layers/LayerBaseVector.ts:188</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1664,7 +1664,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1728,7 +1728,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1751,7 +1751,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1775,7 +1775,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerbasevectoresri.html b/doc/classes/layerbasevectoresri.html
index 22662fab8859f3937794f25de0dd399eda0d8655..db70ac4f7677a2d3dcb4d5d815baaa0606947b6d 100644
--- a/doc/classes/layerbasevectoresri.html
+++ b/doc/classes/layerbasevectoresri.html
@@ -205,7 +205,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L28">layers/LayerBaseVectorEsri.ts:28</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L28">layers/LayerBaseVectorEsri.ts:28</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -246,7 +246,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -257,7 +257,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -268,7 +268,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -279,7 +279,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_autoload">_autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -289,7 +289,7 @@
 					<div class="tsd-signature tsd-kind-icon">_esri<wbr>Format<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">EsriJSON</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L26">layers/LayerBaseVectorEsri.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L26">layers/LayerBaseVectorEsri.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -300,7 +300,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -311,7 +311,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -322,7 +322,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -333,7 +333,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -344,7 +344,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -355,7 +355,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmove">_mapMove</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -366,7 +366,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmovemakegetparams">_mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -377,7 +377,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmoveparams">_mapMoveParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -388,7 +388,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -399,7 +399,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -410,7 +410,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -421,7 +421,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -432,7 +432,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -444,7 +444,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ollayer">_olLayer</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -455,7 +455,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemand">_onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -466,7 +466,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemanddelay">_onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -477,7 +477,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -487,7 +487,7 @@
 					<div class="tsd-signature tsd-kind-icon">_outSR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L25">layers/LayerBaseVectorEsri.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L25">layers/LayerBaseVectorEsri.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -498,7 +498,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -509,7 +509,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projection4326">_projection4326</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -520,7 +520,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projectionmap">_projectionMap</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -532,7 +532,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_source">_source</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -543,7 +543,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_style">_style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -554,7 +554,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -564,7 +564,7 @@
 					<div class="tsd-signature tsd-kind-icon">_url<wbr>Copy<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L27">layers/LayerBaseVectorEsri.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L27">layers/LayerBaseVectorEsri.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -574,7 +574,7 @@
 					<div class="tsd-signature tsd-kind-icon">_use<wbr>Esri<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L28">layers/LayerBaseVectorEsri.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L28">layers/LayerBaseVectorEsri.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -585,7 +585,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -596,7 +596,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -607,7 +607,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -626,7 +626,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -635,7 +635,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -659,7 +659,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#autoload">autoLoad</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -682,7 +682,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#features">features</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -706,7 +706,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -715,7 +715,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -740,7 +740,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -759,7 +759,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -793,7 +793,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -821,7 +821,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapcrs">mapCrs</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -844,7 +844,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmove">mapMove</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -872,7 +872,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmoveparams">mapMoveParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -900,7 +900,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapproj">mapProj</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Projection</span></h4>
@@ -918,7 +918,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -946,7 +946,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -974,7 +974,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1002,7 +1002,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1031,7 +1031,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1050,7 +1050,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1085,7 +1085,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Vector</span></h4>
@@ -1103,7 +1103,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ondemanddelay">onDemandDelay</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1127,7 +1127,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1146,7 +1146,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1181,7 +1181,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1200,7 +1200,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1235,7 +1235,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1263,7 +1263,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1282,7 +1282,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1316,7 +1316,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1346,7 +1346,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1361,7 +1361,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1398,7 +1398,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1412,7 +1412,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1444,7 +1444,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1473,7 +1473,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L130">layers/LayerBaseVectorEsri.ts:130</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L130">layers/LayerBaseVectorEsri.ts:130</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1497,7 +1497,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#addfeatures">addFeatures</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L120">layers/LayerBaseVectorEsri.ts:120</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L120">layers/LayerBaseVectorEsri.ts:120</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1529,7 +1529,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L97">layers/LayerBaseVectorEsri.ts:97</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L97">layers/LayerBaseVectorEsri.ts:97</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1558,7 +1558,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1576,7 +1576,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#clear">clear</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1599,7 +1599,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1623,7 +1623,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1641,7 +1641,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1659,7 +1659,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovebefore">mapMoveBefore</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L171">layers/LayerBaseVectorEsri.ts:171</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L171">layers/LayerBaseVectorEsri.ts:171</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1695,7 +1695,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovecallback">mapMoveCallback</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L185">layers/LayerBaseVectorEsri.ts:185</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L185">layers/LayerBaseVectorEsri.ts:185</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1727,7 +1727,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L153">layers/LayerBaseVectorEsri.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L153">layers/LayerBaseVectorEsri.ts:153</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1791,7 +1791,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1814,7 +1814,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1839,7 +1839,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#setzindex">setZIndex</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerbasevectorgeojson.html b/doc/classes/layerbasevectorgeojson.html
index 995554a01cbce855e80f89039dc9d8cd83672e44..d5157c08920711da6e32a34cde7e5a6aba623465 100644
--- a/doc/classes/layerbasevectorgeojson.html
+++ b/doc/classes/layerbasevectorgeojson.html
@@ -211,7 +211,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -249,7 +249,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -260,7 +260,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -271,7 +271,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -282,7 +282,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_autoload">_autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -292,7 +292,7 @@
 					<div class="tsd-signature tsd-kind-icon">_geo<wbr>Json<wbr>Format<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">GeoJSON</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -303,7 +303,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -314,7 +314,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -325,7 +325,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -336,7 +336,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -347,7 +347,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -358,7 +358,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmove">_mapMove</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -369,7 +369,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmovemakegetparams">_mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -380,7 +380,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmoveparams">_mapMoveParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -391,7 +391,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -402,7 +402,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -413,7 +413,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -424,7 +424,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -435,7 +435,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -447,7 +447,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ollayer">_olLayer</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -458,7 +458,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemand">_onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -469,7 +469,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemanddelay">_onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -480,7 +480,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -491,7 +491,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -502,7 +502,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projection4326">_projection4326</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -513,7 +513,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projectionmap">_projectionMap</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -525,7 +525,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_source">_source</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -536,7 +536,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_style">_style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -546,7 +546,7 @@
 					<div class="tsd-signature tsd-kind-icon">_transform<span class="tsd-signature-symbol">:</span> <a href="../interfaces/crstransform.html" class="tsd-signature-type">crsTransform</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -557,7 +557,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -568,7 +568,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -579,7 +579,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -590,7 +590,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -609,7 +609,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -618,7 +618,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -642,7 +642,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#autoload">autoLoad</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -665,7 +665,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#features">features</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -689,7 +689,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -698,7 +698,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -723,7 +723,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -742,7 +742,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -776,7 +776,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -804,7 +804,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapcrs">mapCrs</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -827,7 +827,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmove">mapMove</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -855,7 +855,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmoveparams">mapMoveParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -883,7 +883,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapproj">mapProj</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Projection</span></h4>
@@ -901,7 +901,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -929,7 +929,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -957,7 +957,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -985,7 +985,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1014,7 +1014,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1033,7 +1033,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1068,7 +1068,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Vector</span></h4>
@@ -1086,7 +1086,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ondemanddelay">onDemandDelay</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1110,7 +1110,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1129,7 +1129,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1164,7 +1164,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1183,7 +1183,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1218,7 +1218,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1246,7 +1246,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1265,7 +1265,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1299,7 +1299,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1329,7 +1329,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1344,7 +1344,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1381,7 +1381,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1395,7 +1395,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1427,7 +1427,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1456,7 +1456,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L95">layers/LayerBaseVectorGeoJson.ts:95</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L95">layers/LayerBaseVectorGeoJson.ts:95</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1480,7 +1480,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#addfeatures">addFeatures</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1512,7 +1512,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1541,7 +1541,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1559,7 +1559,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#clear">clear</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1582,7 +1582,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1606,7 +1606,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1624,7 +1624,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1642,7 +1642,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovebefore">mapMoveBefore</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1678,7 +1678,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovecallback">mapMoveCallback</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1714,7 +1714,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1778,7 +1778,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1801,7 +1801,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1826,7 +1826,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#setzindex">setZIndex</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerbasexyztile.html b/doc/classes/layerbasexyztile.html
index 9b270e52dfadbe51c0c8e69a70bec39db67baad5..9ae5f67e9b5431005604e3aba5800694038b8c82 100644
--- a/doc/classes/layerbasexyztile.html
+++ b/doc/classes/layerbasexyztile.html
@@ -187,7 +187,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L14">layers/LayerBaseXyzTile.ts:14</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L14">layers/LayerBaseXyzTile.ts:14</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -228,7 +228,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -239,7 +239,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -250,7 +250,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -261,7 +261,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -272,7 +272,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -294,7 +294,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -305,7 +305,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -316,7 +316,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -327,7 +327,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -338,7 +338,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -349,7 +349,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -360,7 +360,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -371,7 +371,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -382,7 +382,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -393,7 +393,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -404,7 +404,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -415,7 +415,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -426,7 +426,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -437,7 +437,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -448,7 +448,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -467,7 +467,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -476,7 +476,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -501,7 +501,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -510,7 +510,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -535,7 +535,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -554,7 +554,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -588,7 +588,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -616,7 +616,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -644,7 +644,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -672,7 +672,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -700,7 +700,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -729,7 +729,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -748,7 +748,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -782,7 +782,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -804,7 +804,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -823,7 +823,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -858,7 +858,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -877,7 +877,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -911,7 +911,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -932,7 +932,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -961,7 +961,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -980,7 +980,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1014,7 +1014,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1028,7 +1028,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1060,7 +1060,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1089,7 +1089,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1113,7 +1113,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1142,7 +1142,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1160,7 +1160,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1184,7 +1184,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1202,7 +1202,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1220,7 +1220,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1243,7 +1243,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1267,7 +1267,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layeresrimapserver.html b/doc/classes/layeresrimapserver.html
index c357aa40095444017c5171fae15ee3dec6ec0edd..f1cf88197b9bee948f0c9e73df2b30981b937710 100644
--- a/doc/classes/layeresrimapserver.html
+++ b/doc/classes/layeresrimapserver.html
@@ -182,7 +182,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L25">layers/LayerEsriMapServer.ts:25</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L25">layers/LayerEsriMapServer.ts:25</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -218,7 +218,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -229,7 +229,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -240,7 +240,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -250,7 +250,7 @@
 					<div class="tsd-signature tsd-kind-icon">_esri<wbr>Format<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">EsriJSON</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L24">layers/LayerEsriMapServer.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L24">layers/LayerEsriMapServer.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -261,7 +261,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -272,7 +272,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -294,7 +294,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -305,7 +305,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -316,7 +316,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -327,7 +327,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -338,7 +338,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -349,7 +349,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -360,7 +360,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -371,7 +371,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -382,7 +382,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -393,7 +393,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -403,7 +403,7 @@
 					<div class="tsd-signature tsd-kind-icon">_popup<wbr>Request<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQueryXHR</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L25">layers/LayerEsriMapServer.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L25">layers/LayerEsriMapServer.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -414,7 +414,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -425,7 +425,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -436,7 +436,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -447,7 +447,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -458,7 +458,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -477,7 +477,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -486,7 +486,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -511,7 +511,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -520,7 +520,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -545,7 +545,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -564,7 +564,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -598,7 +598,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -626,7 +626,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -654,7 +654,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -682,7 +682,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -710,7 +710,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -739,7 +739,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -758,7 +758,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -792,7 +792,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L164">layers/LayerEsriMapServer.ts:164</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L164">layers/LayerEsriMapServer.ts:164</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -814,7 +814,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -833,7 +833,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -868,7 +868,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -887,7 +887,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -921,7 +921,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L156">layers/LayerEsriMapServer.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L156">layers/LayerEsriMapServer.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -942,7 +942,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -971,7 +971,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -990,7 +990,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1024,7 +1024,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1038,7 +1038,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1070,7 +1070,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1099,7 +1099,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1123,7 +1123,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L82">layers/LayerEsriMapServer.ts:82</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L82">layers/LayerEsriMapServer.ts:82</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1152,7 +1152,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1170,7 +1170,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1194,7 +1194,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1211,7 +1211,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L98">layers/LayerEsriMapServer.ts:98</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L98">layers/LayerEsriMapServer.ts:98</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1240,7 +1240,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1258,7 +1258,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1281,7 +1281,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1305,7 +1305,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layeresritile.html b/doc/classes/layeresritile.html
index f7df1df091ad0b3abe5e5b7a427ef4d9e4099e18..81ba563d7305f501f634b8ce110cc306741681c9 100644
--- a/doc/classes/layeresritile.html
+++ b/doc/classes/layeresritile.html
@@ -180,7 +180,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriTile.ts#L21">layers/LayerEsriTile.ts:21</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriTile.ts#L21">layers/LayerEsriTile.ts:21</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -221,7 +221,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -232,7 +232,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -243,7 +243,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -254,7 +254,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -265,7 +265,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -276,7 +276,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -287,7 +287,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -298,7 +298,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -309,7 +309,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -320,7 +320,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -331,7 +331,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -342,7 +342,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -353,7 +353,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -364,7 +364,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -375,7 +375,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -386,7 +386,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -397,7 +397,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -408,7 +408,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -418,7 +418,7 @@
 					<div class="tsd-signature tsd-kind-icon">_use<wbr>Esri<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriTile.ts#L21">layers/LayerEsriTile.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriTile.ts#L21">layers/LayerEsriTile.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -429,7 +429,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -440,7 +440,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -451,7 +451,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -470,7 +470,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -479,7 +479,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -504,7 +504,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -513,7 +513,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -538,7 +538,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -557,7 +557,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -591,7 +591,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -619,7 +619,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -647,7 +647,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -675,7 +675,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -703,7 +703,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -732,7 +732,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -751,7 +751,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -786,7 +786,7 @@
 								<p>Inherited from <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -808,7 +808,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -827,7 +827,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -862,7 +862,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -881,7 +881,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -916,7 +916,7 @@
 								<p>Inherited from <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -937,7 +937,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -966,7 +966,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -985,7 +985,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1019,7 +1019,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1033,7 +1033,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1065,7 +1065,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1094,7 +1094,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L142">layers/LayerBase.ts:142</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1118,7 +1118,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriTile.ts#L61">layers/LayerEsriTile.ts:61</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriTile.ts#L61">layers/LayerEsriTile.ts:61</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1147,7 +1147,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1165,7 +1165,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1189,7 +1189,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1207,7 +1207,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1225,7 +1225,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1248,7 +1248,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1272,7 +1272,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layergroup.html b/doc/classes/layergroup.html
index 86ca0aa205bd0cf093fe27ab625d452266f5d5ad..7f82a020ffc45be08ae83275e5358cd3fafa9e79 100644
--- a/doc/classes/layergroup.html
+++ b/doc/classes/layergroup.html
@@ -128,7 +128,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L43">collections/LayerLegend.ts:43</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L43">collections/LayerLegend.ts:43</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -155,7 +155,7 @@
 					<div class="tsd-signature tsd-kind-icon">add<wbr>Check<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L42">collections/LayerLegend.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L42">collections/LayerLegend.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -165,7 +165,7 @@
 					<div class="tsd-signature tsd-kind-icon">all<wbr>Group<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L38">collections/LayerLegend.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L38">collections/LayerLegend.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -175,7 +175,7 @@
 					<div class="tsd-signature tsd-kind-icon">all<wbr>Group<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L39">collections/LayerLegend.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L39">collections/LayerLegend.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -185,7 +185,7 @@
 					<div class="tsd-signature tsd-kind-icon">all<wbr>Layer<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L36">collections/LayerLegend.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L36">collections/LayerLegend.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -195,7 +195,7 @@
 					<div class="tsd-signature tsd-kind-icon">all<wbr>Layer<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L40">collections/LayerLegend.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L40">collections/LayerLegend.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -205,7 +205,7 @@
 					<div class="tsd-signature tsd-kind-icon">collapse<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L41">collections/LayerLegend.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L41">collections/LayerLegend.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -215,7 +215,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Groups<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L32">collections/LayerLegend.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L32">collections/LayerLegend.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -225,7 +225,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Groups<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L31">collections/LayerLegend.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L31">collections/LayerLegend.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -235,7 +235,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L34">collections/LayerLegend.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L34">collections/LayerLegend.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -245,7 +245,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L29">collections/LayerLegend.ts:29</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L29">collections/LayerLegend.ts:29</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -255,7 +255,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Layers<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L30">collections/LayerLegend.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L30">collections/LayerLegend.ts:30</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -265,7 +265,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L35">collections/LayerLegend.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L35">collections/LayerLegend.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -275,7 +275,7 @@
 					<div class="tsd-signature tsd-kind-icon">item<wbr>IdArray<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L33">collections/LayerLegend.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L33">collections/LayerLegend.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -285,7 +285,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<wbr>Parent<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L43">collections/LayerLegend.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L43">collections/LayerLegend.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -295,7 +295,7 @@
 					<div class="tsd-signature tsd-kind-icon">parent<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L37">collections/LayerLegend.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L37">collections/LayerLegend.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -312,7 +312,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L175">collections/LayerLegend.ts:175</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L175">collections/LayerLegend.ts:175</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -354,7 +354,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L89">collections/LayerLegend.ts:89</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L89">collections/LayerLegend.ts:89</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -389,7 +389,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L123">collections/LayerLegend.ts:123</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L123">collections/LayerLegend.ts:123</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -423,7 +423,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L153">collections/LayerLegend.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L153">collections/LayerLegend.ts:153</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layeritsinventory.html b/doc/classes/layeritsinventory.html
index 3085d8596c1ebd081acf2018f561a99ae4a74305..d1b9bb0c897c8b00341fd709c5bbc8612a5a81b8 100644
--- a/doc/classes/layeritsinventory.html
+++ b/doc/classes/layeritsinventory.html
@@ -203,7 +203,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L242">layers/LayerItsInventory.ts:242</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L242">layers/LayerItsInventory.ts:242</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -236,7 +236,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -247,7 +247,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -258,7 +258,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -269,7 +269,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_autoload">_autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -280,7 +280,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_geojsonformat">_geoJsonFormat</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -291,7 +291,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -302,7 +302,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -313,7 +313,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -324,7 +324,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -335,7 +335,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -346,7 +346,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmove">_mapMove</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -357,7 +357,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmovemakegetparams">_mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -368,7 +368,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmoveparams">_mapMoveParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -379,7 +379,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -390,7 +390,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -401,7 +401,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -412,7 +412,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -423,7 +423,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -435,7 +435,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ollayer">_olLayer</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -446,7 +446,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemand">_onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -457,7 +457,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemanddelay">_onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -468,7 +468,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -479,7 +479,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -490,7 +490,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projection4326">_projection4326</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -501,7 +501,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projectionmap">_projectionMap</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -513,7 +513,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_source">_source</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -524,7 +524,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_style">_style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -535,7 +535,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_transform">_transform</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -546,7 +546,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -557,7 +557,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -568,7 +568,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -579,7 +579,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -598,7 +598,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -607,7 +607,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -631,7 +631,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#autoload">autoLoad</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -654,7 +654,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#features">features</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -678,7 +678,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -687,7 +687,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -712,7 +712,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -731,7 +731,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -765,7 +765,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -793,7 +793,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapcrs">mapCrs</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -816,7 +816,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmove">mapMove</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -844,7 +844,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmoveparams">mapMoveParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -872,7 +872,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapproj">mapProj</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Projection</span></h4>
@@ -890,7 +890,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -918,7 +918,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -946,7 +946,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -974,7 +974,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1003,7 +1003,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1022,7 +1022,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1057,7 +1057,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Vector</span></h4>
@@ -1075,7 +1075,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ondemanddelay">onDemandDelay</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1099,7 +1099,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1118,7 +1118,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1153,7 +1153,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1172,7 +1172,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1207,7 +1207,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1235,7 +1235,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1254,7 +1254,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1288,7 +1288,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1318,7 +1318,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1333,7 +1333,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1370,7 +1370,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1384,7 +1384,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1416,7 +1416,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1446,7 +1446,7 @@
 								<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_load">_load</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L95">layers/LayerBaseVectorGeoJson.ts:95</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L95">layers/LayerBaseVectorGeoJson.ts:95</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1471,7 +1471,7 @@
 								<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#addfeatures">addFeatures</a></p>
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#addfeatures">addFeatures</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1503,7 +1503,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1532,7 +1532,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1550,7 +1550,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#clear">clear</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1573,7 +1573,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1597,7 +1597,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1615,7 +1615,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1633,7 +1633,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovebefore">mapMoveBefore</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1670,7 +1670,7 @@
 								<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#mapmovecallback">mapMoveCallback</a></p>
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovecallback">mapMoveCallback</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1706,7 +1706,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L335">layers/LayerItsInventory.ts:335</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L335">layers/LayerItsInventory.ts:335</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1775,7 +1775,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1798,7 +1798,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1823,7 +1823,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#setzindex">setZIndex</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerlegend.html b/doc/classes/layerlegend.html
index 8531e4f6a17f5af54591e435c6b6d64850e4c1c2..514e43773f321a382bcfd9051e7f9cf6cabaffb0 100644
--- a/doc/classes/layerlegend.html
+++ b/doc/classes/layerlegend.html
@@ -121,7 +121,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L235">collections/LayerLegend.ts:235</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L235">collections/LayerLegend.ts:235</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -169,7 +169,7 @@
 					<div class="tsd-signature tsd-kind-icon">$div<wbr>Element<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L232">collections/LayerLegend.ts:232</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L232">collections/LayerLegend.ts:232</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -179,7 +179,7 @@
 					<div class="tsd-signature tsd-kind-icon">_legend<wbr>Items<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/ilegenditem.html" class="tsd-signature-type">iLegendItem</a><span class="tsd-signature-symbol"> | </span><a href="layerbase.html" class="tsd-signature-type">LayerBase</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L233">collections/LayerLegend.ts:233</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L233">collections/LayerLegend.ts:233</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -189,7 +189,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<wbr>Group<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L234">collections/LayerLegend.ts:234</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L234">collections/LayerLegend.ts:234</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -199,7 +199,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L235">collections/LayerLegend.ts:235</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L235">collections/LayerLegend.ts:235</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -216,7 +216,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L344">collections/LayerLegend.ts:344</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L344">collections/LayerLegend.ts:344</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/layerrealearthtile.html b/doc/classes/layerrealearthtile.html
index eb619b6c7ace9910d6cbe644ecb0de1df9b9396e..7a414d5f68f92c717a8b8fda918d7f5d1f68461a 100644
--- a/doc/classes/layerrealearthtile.html
+++ b/doc/classes/layerrealearthtile.html
@@ -188,7 +188,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L25">layers/LayerRealEarthTile.ts:25</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L25">layers/LayerRealEarthTile.ts:25</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -221,7 +221,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -232,7 +232,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -243,7 +243,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -254,7 +254,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -265,7 +265,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -276,7 +276,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -287,7 +287,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -298,7 +298,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -309,7 +309,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -320,7 +320,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -331,7 +331,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -342,7 +342,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -353,7 +353,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -364,7 +364,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L51">layers/LayerBase.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -375,7 +375,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -386,7 +386,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -396,7 +396,7 @@
 					<div class="tsd-signature tsd-kind-icon">_products<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L24">layers/LayerRealEarthTile.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L24">layers/LayerRealEarthTile.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -407,7 +407,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L44">layers/LayerBase.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -418,7 +418,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -429,7 +429,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -440,7 +440,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -450,7 +450,7 @@
 					<div class="tsd-signature tsd-kind-icon">animator<span class="tsd-signature-symbol">:</span> <a href="realearthanimatetile.html" class="tsd-signature-type">RealEarthAnimateTile</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L25">layers/LayerRealEarthTile.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L25">layers/LayerRealEarthTile.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -461,7 +461,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -480,7 +480,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -489,7 +489,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -514,7 +514,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -523,7 +523,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -548,7 +548,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -567,7 +567,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -601,7 +601,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -629,7 +629,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -657,7 +657,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -685,7 +685,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -713,7 +713,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -742,7 +742,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -761,7 +761,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -796,7 +796,7 @@
 								<p>Inherited from <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L62">layers/LayerBaseXyzTile.ts:62</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -818,7 +818,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -837,7 +837,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -872,7 +872,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -891,7 +891,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -926,7 +926,7 @@
 								<p>Inherited from <a href="layerbasexyztile.html">LayerBaseXyzTile</a>.<a href="layerbasexyztile.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L54">layers/LayerBaseXyzTile.ts:54</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -947,7 +947,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -976,7 +976,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L331">layers/LayerBase.ts:331</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -995,7 +995,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L339">layers/LayerBase.ts:339</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1029,7 +1029,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1043,7 +1043,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1075,7 +1075,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1104,7 +1104,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L68">layers/LayerRealEarthTile.ts:68</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L68">layers/LayerRealEarthTile.ts:68</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -1122,7 +1122,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1151,7 +1151,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1169,7 +1169,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1193,7 +1193,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1211,7 +1211,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1229,7 +1229,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1252,7 +1252,7 @@
 							<aside class="tsd-sources">
 								<p>Implementation of <a href="../interfaces/irealearthanimate.html">IRealEarthAnimate</a>.<a href="../interfaces/irealearthanimate.html#setlayertime">setLayerTime</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L60">layers/LayerRealEarthTile.ts:60</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L60">layers/LayerRealEarthTile.ts:60</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1276,7 +1276,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1300,7 +1300,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L424">layers/LayerBase.ts:424</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/layerswipe.html b/doc/classes/layerswipe.html
index 3109697569ebcef0e494bc37186eb5527a644ddc..58cebc1fd94af15cbaea969e1577f8dbfe38173f 100644
--- a/doc/classes/layerswipe.html
+++ b/doc/classes/layerswipe.html
@@ -125,7 +125,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L22">olHelpers/layerSwipe.ts:22</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L22">olHelpers/layerSwipe.ts:22</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -157,7 +157,7 @@
 					<div class="tsd-signature tsd-kind-icon">$map<wbr>Element<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L19">olHelpers/layerSwipe.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L19">olHelpers/layerSwipe.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -167,7 +167,7 @@
 					<div class="tsd-signature tsd-kind-icon">$swiper<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L20">olHelpers/layerSwipe.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L20">olHelpers/layerSwipe.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -177,7 +177,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L18">olHelpers/layerSwipe.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L18">olHelpers/layerSwipe.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -187,7 +187,7 @@
 					<div class="tsd-signature tsd-kind-icon">_percent<wbr>Right<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L17">olHelpers/layerSwipe.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L17">olHelpers/layerSwipe.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -197,7 +197,7 @@
 					<div class="tsd-signature tsd-kind-icon">dragging<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L21">olHelpers/layerSwipe.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L21">olHelpers/layerSwipe.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -207,7 +207,7 @@
 					<div class="tsd-signature tsd-kind-icon">left<wbr>Layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="layerbase.html" class="tsd-signature-type">LayerBase</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L15">olHelpers/layerSwipe.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L15">olHelpers/layerSwipe.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -217,7 +217,7 @@
 					<div class="tsd-signature tsd-kind-icon">offset<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L22">olHelpers/layerSwipe.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L22">olHelpers/layerSwipe.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -227,7 +227,7 @@
 					<div class="tsd-signature tsd-kind-icon">right<wbr>Layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="layerbase.html" class="tsd-signature-type">LayerBase</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L16">olHelpers/layerSwipe.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L16">olHelpers/layerSwipe.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -245,7 +245,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L140">olHelpers/layerSwipe.ts:140</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L140">olHelpers/layerSwipe.ts:140</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
@@ -253,7 +253,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L144">olHelpers/layerSwipe.ts:144</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L144">olHelpers/layerSwipe.ts:144</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -279,7 +279,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L87">olHelpers/layerSwipe.ts:87</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L87">olHelpers/layerSwipe.ts:87</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -307,7 +307,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L116">olHelpers/layerSwipe.ts:116</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L116">olHelpers/layerSwipe.ts:116</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/layervectorrealearth.html b/doc/classes/layervectorrealearth.html
index b7bf2a16931bfc75e05dcd2925fe771121752c60..711f1be7026f958d44bdb82b1f821fac86840141 100644
--- a/doc/classes/layervectorrealearth.html
+++ b/doc/classes/layervectorrealearth.html
@@ -212,7 +212,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L25">layers/LayerRealEarthVector.ts:25</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L25">layers/LayerRealEarthVector.ts:25</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -245,7 +245,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#__legenddiv">_$legendDiv</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L49">layers/LayerBase.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -256,7 +256,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_animate">_animate</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L45">layers/LayerBase.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -267,7 +267,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_applycollapsecalled">_applyCollapseCalled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L52">layers/LayerBase.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -278,7 +278,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_autoload">_autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L45">layers/LayerBaseVector.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -289,7 +289,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_geojsonformat">_geoJsonFormat</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L31">layers/LayerBaseVectorGeoJson.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -300,7 +300,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_id">_id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L42">layers/LayerBase.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -311,7 +311,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcheckbox">_legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L32">layers/LayerBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -322,7 +322,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcollapse">_legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L46">layers/LayerBase.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -333,7 +333,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_legendcontent">_legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L40">layers/LayerBase.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -344,7 +344,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_loaded">_loaded</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L38">layers/LayerBase.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -355,7 +355,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmove">_mapMove</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L50">layers/LayerBaseVector.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -366,7 +366,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmovemakegetparams">_mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L48">layers/LayerBaseVector.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -377,7 +377,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_mapmoveparams">_mapMoveParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L49">layers/LayerBaseVector.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -388,7 +388,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxresolution">_maxResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L47">layers/LayerBase.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -399,7 +399,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_maxzoom">_maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L36">layers/LayerBase.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -410,7 +410,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minresolution">_minResolution</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L48">layers/LayerBase.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -421,7 +421,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_minzoom">_minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L35">layers/LayerBase.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -432,7 +432,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_name">_name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L43">layers/LayerBase.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -444,7 +444,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ollayer">_olLayer</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_ollayer">_olLayer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L42">layers/LayerBaseVector.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -455,7 +455,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemand">_onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L46">layers/LayerBaseVector.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -466,7 +466,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_ondemanddelay">_onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L47">layers/LayerBaseVector.ts:47</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -477,7 +477,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_opacity">_opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L34">layers/LayerBase.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -488,7 +488,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_params">_params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L41">layers/LayerBase.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -498,7 +498,7 @@
 					<div class="tsd-signature tsd-kind-icon">_products<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L24">layers/LayerRealEarthVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L24">layers/LayerRealEarthVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -509,7 +509,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projection4326">_projection4326</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L52">layers/LayerBaseVector.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -520,7 +520,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_projectionmap">_projectionMap</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L51">layers/LayerBaseVector.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -532,7 +532,7 @@
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_source">_source</a></p>
 						<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_source">_source</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L43">layers/LayerBaseVector.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -543,7 +543,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#_style">_style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L44">layers/LayerBaseVector.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -554,7 +554,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_transform">_transform</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L32">layers/LayerBaseVectorGeoJson.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -565,7 +565,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_url">_url</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L33">layers/LayerBase.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -576,7 +576,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_visible">_visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L37">layers/LayerBase.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -587,7 +587,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_zindex">_zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L39">layers/LayerBase.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -597,7 +597,7 @@
 					<div class="tsd-signature tsd-kind-icon">animator<span class="tsd-signature-symbol">:</span> <a href="realearthanimatevector.html" class="tsd-signature-type">RealEarthAnimateVector</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L25">layers/LayerRealEarthVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L25">layers/LayerRealEarthVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -608,7 +608,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L50">layers/LayerBase.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -627,7 +627,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L245">layers/LayerBase.ts:245</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -636,7 +636,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#animate">animate</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L249">layers/LayerBase.ts:249</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -660,7 +660,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#autoload">autoLoad</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L213">layers/LayerBaseVector.ts:213</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -683,7 +683,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#features">features</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L298">layers/LayerBaseVector.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -707,7 +707,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L237">layers/LayerBase.ts:237</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -716,7 +716,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#id">id</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L241">layers/LayerBase.ts:241</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -741,7 +741,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L257">layers/LayerBase.ts:257</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -760,7 +760,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#legendcontent">legendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L266">layers/LayerBase.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -794,7 +794,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#loaded">loaded</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L393">layers/LayerBase.ts:393</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -822,7 +822,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapcrs">mapCrs</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L236">layers/LayerBaseVector.ts:236</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -845,7 +845,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmove">mapMove</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L258">layers/LayerBaseVector.ts:258</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -873,7 +873,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmoveparams">mapMoveParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L266">layers/LayerBaseVector.ts:266</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -901,7 +901,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapproj">mapProj</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L240">layers/LayerBaseVector.ts:240</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Projection</span></h4>
@@ -919,7 +919,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxresolution">maxResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L299">layers/LayerBase.ts:299</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -947,7 +947,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#maxzoom">maxZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L315">layers/LayerBase.ts:315</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -975,7 +975,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minresolution">minResolution</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L291">layers/LayerBase.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1003,7 +1003,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#minzoom">minZoom</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L307">layers/LayerBase.ts:307</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1032,7 +1032,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L377">layers/LayerBase.ts:377</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1051,7 +1051,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#name">name</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L385">layers/LayerBase.ts:385</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1086,7 +1086,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ollayer">olLayer</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#ollayer">olLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L305">layers/LayerBaseVector.ts:305</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Vector</span></h4>
@@ -1104,7 +1104,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#ondemanddelay">onDemandDelay</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L206">layers/LayerBaseVector.ts:206</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1128,7 +1128,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L358">layers/LayerBase.ts:358</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1147,7 +1147,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#opacity">opacity</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L366">layers/LayerBase.ts:366</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1182,7 +1182,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L274">layers/LayerBase.ts:274</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1201,7 +1201,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#params">params</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L283">layers/LayerBase.ts:283</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1236,7 +1236,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#source">source</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#source">source</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L291">layers/LayerBaseVector.ts:291</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1264,7 +1264,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L220">layers/LayerBaseVector.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1283,7 +1283,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#style">style</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L228">layers/LayerBaseVector.ts:228</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1317,7 +1317,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#url">url</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L323">layers/LayerBase.ts:323</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1347,7 +1347,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L270">layers/LayerBaseVector.ts:270</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1362,7 +1362,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#visible">visible</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#visible">visible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L279">layers/LayerBaseVector.ts:279</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1399,7 +1399,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L413">layers/LayerBase.ts:413</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1413,7 +1413,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#zindex">zIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L420">layers/LayerBase.ts:420</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1445,7 +1445,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#_addlegendcontent">_addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L165">layers/LayerBase.ts:165</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1474,7 +1474,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#_load">_load</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L78">layers/LayerRealEarthVector.ts:78</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L78">layers/LayerRealEarthVector.ts:78</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -1493,7 +1493,7 @@
 								<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#addfeatures">addFeatures</a></p>
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#addfeatures">addFeatures</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L80">layers/LayerBaseVectorGeoJson.ts:80</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1525,7 +1525,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#addlegendcontent">addLegendContent</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L187">layers/LayerBase.ts:187</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1554,7 +1554,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#applycollapse">applyCollapse</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L191">layers/LayerBase.ts:191</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -1572,7 +1572,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#clear">clear</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L197">layers/LayerBaseVector.ts:197</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1595,7 +1595,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getlegenddiv">getLegendDiv</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L156">layers/LayerBase.ts:156</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1619,7 +1619,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getollayer">getOlLayer</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L435">layers/LayerBase.ts:435</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Layer</span></h4>
@@ -1637,7 +1637,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#getsource">getSource</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L406">layers/LayerBase.ts:406</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Source</span></h4>
@@ -1655,7 +1655,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovebefore">mapMoveBefore</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L153">layers/LayerBaseVector.ts:153</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1692,7 +1692,7 @@
 								<p>Inherited from <a href="layerbasevectorgeojson.html">LayerBaseVectorGeoJson</a>.<a href="layerbasevectorgeojson.html#mapmovecallback">mapMoveCallback</a></p>
 								<p>Overrides <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovecallback">mapMoveCallback</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L120">layers/LayerBaseVectorGeoJson.ts:120</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1728,7 +1728,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L178">layers/LayerBaseVector.ts:178</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1792,7 +1792,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#refresh">refresh</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L231">layers/LayerBase.ts:231</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1815,7 +1815,7 @@
 							<aside class="tsd-sources">
 								<p>Implementation of <a href="../interfaces/irealearthanimate.html">IRealEarthAnimate</a>.<a href="../interfaces/irealearthanimate.html#setlayertime">setLayerTime</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L70">layers/LayerRealEarthVector.ts:70</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L70">layers/LayerRealEarthVector.ts:70</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1839,7 +1839,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setvisible">setVisible</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L343">layers/LayerBase.ts:343</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1864,7 +1864,7 @@
 								<p>Inherited from <a href="layerbasevector.html">LayerBaseVector</a>.<a href="layerbasevector.html#setzindex">setZIndex</a></p>
 								<p>Overrides <a href="layerbase.html">LayerBase</a>.<a href="layerbase.html#setzindex">setZIndex</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L309">layers/LayerBaseVector.ts:309</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/classes/linesymbol.html b/doc/classes/linesymbol.html
index 21e042153175f77b2d1ca9f0562edbdbe263632d..3b6e15c396b593d499628450759577e31c77dd5d 100644
--- a/doc/classes/linesymbol.html
+++ b/doc/classes/linesymbol.html
@@ -114,7 +114,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L129">olHelpers/esriToOlStyle.ts:129</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L129">olHelpers/esriToOlStyle.ts:129</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -140,7 +140,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#legendhtml">legendHtml</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -151,7 +151,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#olstyle">olStyle</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -162,7 +162,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -173,7 +173,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#symbolobj">symbolObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/mapinteractionbase.html b/doc/classes/mapinteractionbase.html
index 90ab11779a050881c42f5a0a5b68e43eeb2db0f6..e9bb1eceb5e37a43192b794e92725d84e6ec66dd 100644
--- a/doc/classes/mapinteractionbase.html
+++ b/doc/classes/mapinteractionbase.html
@@ -137,7 +137,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -169,7 +169,7 @@
 					<div class="tsd-signature tsd-kind-icon">_initialized<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -179,7 +179,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -189,7 +189,7 @@
 					<div class="tsd-signature tsd-kind-icon">_subtype<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -206,7 +206,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -229,7 +229,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -255,7 +255,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -277,7 +277,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -299,7 +299,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L33">olHelpers/mapInteractionBase.ts:33</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L33">olHelpers/mapInteractionBase.ts:33</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/mapmovecls.html b/doc/classes/mapmovecls.html
index 38c8fdcc079a73e8bc7eab418b7d5cd21cb2966a..d86500a5b9fbbbf3ce9c00f133e4479cc552ed7d 100644
--- a/doc/classes/mapmovecls.html
+++ b/doc/classes/mapmovecls.html
@@ -157,7 +157,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L44">olHelpers/mapMoveCls.ts:44</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L44">olHelpers/mapMoveCls.ts:44</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -178,7 +178,7 @@
 					<div class="tsd-signature tsd-kind-icon">_arr<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="layerbasevector.html" class="tsd-signature-type">LayerBaseVector</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L37">olHelpers/mapMoveCls.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L37">olHelpers/mapMoveCls.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -188,7 +188,7 @@
 					<div class="tsd-signature tsd-kind-icon">_arr<wbr>Lyr<wbr>Request<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L44">olHelpers/mapMoveCls.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L44">olHelpers/mapMoveCls.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -198,7 +198,7 @@
 					<div class="tsd-signature tsd-kind-icon">_arr<wbr>Lyr<wbr>Timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L38">olHelpers/mapMoveCls.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L38">olHelpers/mapMoveCls.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -209,7 +209,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_initialized">_initialized</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -219,7 +219,7 @@
 					<div class="tsd-signature tsd-kind-icon">_lookup<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L36">olHelpers/mapMoveCls.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L36">olHelpers/mapMoveCls.ts:36</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -238,7 +238,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_map">_map</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -248,7 +248,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Extent<span class="tsd-signature-symbol">:</span> <a href="../interfaces/extentobject.html" class="tsd-signature-type">extentObject</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L34">olHelpers/mapMoveCls.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L34">olHelpers/mapMoveCls.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -258,7 +258,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Callback<wbr>Context<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L42">olHelpers/mapMoveCls.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L42">olHelpers/mapMoveCls.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -268,7 +268,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Callback<wbr>Delays<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L40">olHelpers/mapMoveCls.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L40">olHelpers/mapMoveCls.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -278,7 +278,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Callback<wbr>Timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L39">olHelpers/mapMoveCls.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L39">olHelpers/mapMoveCls.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -288,7 +288,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Callbacks<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/mapmovecallbackfunction.html" class="tsd-signature-type">mapMoveCallbackFunction</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L43">olHelpers/mapMoveCls.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L43">olHelpers/mapMoveCls.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -298,7 +298,7 @@
 					<div class="tsd-signature tsd-kind-icon">_map<wbr>Move<wbr>Callbacks<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L41">olHelpers/mapMoveCls.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L41">olHelpers/mapMoveCls.ts:41</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -317,7 +317,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_subtype">_subtype</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -327,7 +327,7 @@
 					<div class="tsd-signature tsd-kind-icon">_zoom<wbr>Level<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L35">olHelpers/mapMoveCls.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L35">olHelpers/mapMoveCls.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -345,7 +345,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#initialized">initialized</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -369,7 +369,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#map">map</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -392,7 +392,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L107">olHelpers/mapMoveCls.ts:107</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L107">olHelpers/mapMoveCls.ts:107</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -418,7 +418,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_checkinit">_checkInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -440,7 +440,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L90">olHelpers/mapMoveCls.ts:90</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L90">olHelpers/mapMoveCls.ts:90</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -457,7 +457,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L265">olHelpers/mapMoveCls.ts:265</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L265">olHelpers/mapMoveCls.ts:265</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -509,7 +509,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L233">olHelpers/mapMoveCls.ts:233</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L233">olHelpers/mapMoveCls.ts:233</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -547,7 +547,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#checkinit">checkInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -570,7 +570,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#init">init</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L71">olHelpers/mapMoveCls.ts:71</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L71">olHelpers/mapMoveCls.ts:71</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -601,7 +601,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L121">olHelpers/mapMoveCls.ts:121</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L121">olHelpers/mapMoveCls.ts:121</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -644,7 +644,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L190">olHelpers/mapMoveCls.ts:190</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L190">olHelpers/mapMoveCls.ts:190</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/mappopupcls.html b/doc/classes/mappopupcls.html
index d8a3d6263aa72c9205bc261986498e4f962a2f6a..6f96954445ff6ff1b30e3e0506b03cb71d042bf8 100644
--- a/doc/classes/mappopupcls.html
+++ b/doc/classes/mappopupcls.html
@@ -151,7 +151,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L98">olHelpers/mapPopupCls.ts:98</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L98">olHelpers/mapPopupCls.ts:98</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -173,7 +173,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_initialized">_initialized</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L15">olHelpers/mapInteractionBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -184,7 +184,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_map">_map</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L14">olHelpers/mapInteractionBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -195,7 +195,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_subtype">_subtype</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L16">olHelpers/mapInteractionBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -213,7 +213,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#initialized">initialized</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L52">olHelpers/mapInteractionBase.ts:52</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -237,7 +237,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#map">map</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L44">olHelpers/mapInteractionBase.ts:44</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -263,7 +263,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L417">olHelpers/mapPopupCls.ts:417</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L417">olHelpers/mapPopupCls.ts:417</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -307,7 +307,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#_checkinit">_checkInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L60">olHelpers/mapInteractionBase.ts:60</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -329,7 +329,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L371">olHelpers/mapPopupCls.ts:371</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L371">olHelpers/mapPopupCls.ts:371</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -358,7 +358,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L321">olHelpers/mapPopupCls.ts:321</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L321">olHelpers/mapPopupCls.ts:321</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -380,7 +380,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L533">olHelpers/mapPopupCls.ts:533</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L533">olHelpers/mapPopupCls.ts:533</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -411,7 +411,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L512">olHelpers/mapPopupCls.ts:512</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L512">olHelpers/mapPopupCls.ts:512</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -443,7 +443,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L344">olHelpers/mapPopupCls.ts:344</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L344">olHelpers/mapPopupCls.ts:344</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -489,7 +489,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L403">olHelpers/mapPopupCls.ts:403</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L403">olHelpers/mapPopupCls.ts:403</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -517,7 +517,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L472">olHelpers/mapPopupCls.ts:472</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L472">olHelpers/mapPopupCls.ts:472</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -570,7 +570,7 @@
 							<aside class="tsd-sources">
 								<p>Inherited from <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#checkinit">checkInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L72">olHelpers/mapInteractionBase.ts:72</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -592,7 +592,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L519">olHelpers/mapPopupCls.ts:519</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L519">olHelpers/mapPopupCls.ts:519</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -609,7 +609,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L387">olHelpers/mapPopupCls.ts:387</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L387">olHelpers/mapPopupCls.ts:387</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -627,7 +627,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="mapinteractionbase.html">MapInteractionBase</a>.<a href="mapinteractionbase.html#init">init</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L145">olHelpers/mapPopupCls.ts:145</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L145">olHelpers/mapPopupCls.ts:145</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -658,7 +658,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L489">olHelpers/mapPopupCls.ts:489</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L489">olHelpers/mapPopupCls.ts:489</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/mediacontrol.html b/doc/classes/mediacontrol.html
index 1b4b13c8902b3d2ab5030755145643bb7e840c4d..84b469f874ff972dc160598a3864e798ab1eb676 100644
--- a/doc/classes/mediacontrol.html
+++ b/doc/classes/mediacontrol.html
@@ -137,7 +137,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L58">domUtil/media-control.ts:58</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L58">domUtil/media-control.ts:58</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -171,7 +171,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$btn<wbr>Stop<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L50">domUtil/media-control.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L50">domUtil/media-control.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -181,7 +181,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$slider<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L51">domUtil/media-control.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L51">domUtil/media-control.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -191,7 +191,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$val<wbr>Label<wbr>Max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L54">domUtil/media-control.ts:54</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L54">domUtil/media-control.ts:54</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -201,7 +201,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$val<wbr>Label<wbr>Min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L53">domUtil/media-control.ts:53</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L53">domUtil/media-control.ts:53</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -211,7 +211,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$val<wbr>Label<wbr>Val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L52">domUtil/media-control.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L52">domUtil/media-control.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -221,7 +221,7 @@
 					<div class="tsd-signature tsd-kind-icon">_change<wbr>Func<span class="tsd-signature-symbol">:</span> <a href="../interfaces/changefunction.html" class="tsd-signature-type">changeFunction</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L58">domUtil/media-control.ts:58</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L58">domUtil/media-control.ts:58</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -231,7 +231,7 @@
 					<div class="tsd-signature tsd-kind-icon">_container<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L41">domUtil/media-control.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L41">domUtil/media-control.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -241,7 +241,7 @@
 					<div class="tsd-signature tsd-kind-icon">_current<wbr>Value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L46">domUtil/media-control.ts:46</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L46">domUtil/media-control.ts:46</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -251,7 +251,7 @@
 					<div class="tsd-signature tsd-kind-icon">_interval<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L55">domUtil/media-control.ts:55</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L55">domUtil/media-control.ts:55</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -261,7 +261,7 @@
 					<div class="tsd-signature tsd-kind-icon">_max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L43">domUtil/media-control.ts:43</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L43">domUtil/media-control.ts:43</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -271,7 +271,7 @@
 					<div class="tsd-signature tsd-kind-icon">_min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L42">domUtil/media-control.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L42">domUtil/media-control.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -281,7 +281,7 @@
 					<div class="tsd-signature tsd-kind-icon">_play<wbr>Interval<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L44">domUtil/media-control.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L44">domUtil/media-control.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -291,7 +291,7 @@
 					<div class="tsd-signature tsd-kind-icon">_playing<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L48">domUtil/media-control.ts:48</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L48">domUtil/media-control.ts:48</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -301,7 +301,7 @@
 					<div class="tsd-signature tsd-kind-icon">_show<wbr>AsDate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L56">domUtil/media-control.ts:56</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L56">domUtil/media-control.ts:56</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -311,7 +311,7 @@
 					<div class="tsd-signature tsd-kind-icon">_step<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L45">domUtil/media-control.ts:45</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L45">domUtil/media-control.ts:45</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -328,7 +328,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L249">domUtil/media-control.ts:249</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L249">domUtil/media-control.ts:249</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -359,7 +359,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L190">domUtil/media-control.ts:190</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L190">domUtil/media-control.ts:190</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
@@ -367,7 +367,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L194">domUtil/media-control.ts:194</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L194">domUtil/media-control.ts:194</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -390,7 +390,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L182">domUtil/media-control.ts:182</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L182">domUtil/media-control.ts:182</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
@@ -407,7 +407,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L178">domUtil/media-control.ts:178</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L178">domUtil/media-control.ts:178</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
@@ -424,7 +424,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L174">domUtil/media-control.ts:174</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L174">domUtil/media-control.ts:174</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
@@ -441,7 +441,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L186">domUtil/media-control.ts:186</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L186">domUtil/media-control.ts:186</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
@@ -461,7 +461,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L219">domUtil/media-control.ts:219</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L219">domUtil/media-control.ts:219</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -504,7 +504,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L168">domUtil/media-control.ts:168</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L168">domUtil/media-control.ts:168</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
diff --git a/doc/classes/pointsymbol.html b/doc/classes/pointsymbol.html
index 398de157de64c228068ac616377d37665e76d1c9..4f1d311e7125a6c5a9e6ced344bf3aa284c94554 100644
--- a/doc/classes/pointsymbol.html
+++ b/doc/classes/pointsymbol.html
@@ -114,7 +114,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L94">olHelpers/esriToOlStyle.ts:94</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L94">olHelpers/esriToOlStyle.ts:94</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -140,7 +140,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#legendhtml">legendHtml</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -151,7 +151,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#olstyle">olStyle</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -162,7 +162,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -173,7 +173,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#symbolobj">symbolObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/polygonsymbol.html b/doc/classes/polygonsymbol.html
index 3ddf930ddb4af61ff7f6239802eb8d2ba2f75629..ef6fcb3144eaa573bfe214216026b55da58ef371 100644
--- a/doc/classes/polygonsymbol.html
+++ b/doc/classes/polygonsymbol.html
@@ -114,7 +114,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L162">olHelpers/esriToOlStyle.ts:162</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L162">olHelpers/esriToOlStyle.ts:162</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -140,7 +140,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#legendhtml">legendHtml</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L71">olHelpers/esriToOlStyle.ts:71</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -151,7 +151,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#olstyle">olStyle</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L74">olHelpers/esriToOlStyle.ts:74</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -162,7 +162,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L72">olHelpers/esriToOlStyle.ts:72</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -173,7 +173,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="commonsymbol.html">CommonSymbol</a>.<a href="commonsymbol.html#symbolobj">symbolObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L73">olHelpers/esriToOlStyle.ts:73</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/radio.html b/doc/classes/radio.html
index 89cc5afc76d2bb8b16fc542f78f2c0612758d216..8070eb61591b134605ade57bca11dfa2a102ef36 100644
--- a/doc/classes/radio.html
+++ b/doc/classes/radio.html
@@ -284,7 +284,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L131">reactCompoents/Radio.tsx:131</a></li>
+									<li>Defined in reactComponents/Radio.tsx:131</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
diff --git a/doc/classes/radiobase.html b/doc/classes/radiobase.html
index 930f36a58815f251ee97396bad6a58671339b0a0..cb13bbe6dd95bf4b21397adda20d769da4868233 100644
--- a/doc/classes/radiobase.html
+++ b/doc/classes/radiobase.html
@@ -130,7 +130,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L77">reactCompoents/Radio.tsx:77</a></li>
+									<li>Defined in reactComponents/Radio.tsx:77</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -166,7 +166,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L77">reactCompoents/Radio.tsx:77</a></li>
+							<li>Defined in reactComponents/Radio.tsx:77</li>
 						</ul>
 					</aside>
 				</section>
@@ -176,7 +176,7 @@
 					<div class="tsd-signature tsd-kind-icon">inline<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L76">reactCompoents/Radio.tsx:76</a></li>
+							<li>Defined in reactComponents/Radio.tsx:76</li>
 						</ul>
 					</aside>
 				</section>
@@ -271,7 +271,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L85">reactCompoents/Radio.tsx:85</a></li>
+									<li>Defined in reactComponents/Radio.tsx:85</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
diff --git a/doc/classes/radioconnected.html b/doc/classes/radioconnected.html
index f9b62d3588f98b892d91ecd87a7aa39249b79c99..836a65a791c2dbde9d01d1026b6b33b1a08a17ee 100644
--- a/doc/classes/radioconnected.html
+++ b/doc/classes/radioconnected.html
@@ -284,7 +284,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L145">reactCompoents/Radio.tsx:145</a></li>
+									<li>Defined in reactComponents/Radio.tsx:145</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
diff --git a/doc/classes/radioitem.html b/doc/classes/radioitem.html
index 22d201aa309823c16db2cef4cca20883aca71647..7c257166866c73948d0bc5dea3210658bd8b2ff4 100644
--- a/doc/classes/radioitem.html
+++ b/doc/classes/radioitem.html
@@ -129,7 +129,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L23">reactCompoents/Radio.tsx:23</a></li>
+									<li>Defined in reactComponents/Radio.tsx:23</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -165,7 +165,7 @@
 					<div class="tsd-signature tsd-kind-icon">guid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L23">reactCompoents/Radio.tsx:23</a></li>
+							<li>Defined in reactComponents/Radio.tsx:23</li>
 						</ul>
 					</aside>
 				</section>
@@ -260,7 +260,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L31">reactCompoents/Radio.tsx:31</a></li>
+									<li>Defined in reactComponents/Radio.tsx:31</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
diff --git a/doc/classes/realearthanimate.html b/doc/classes/realearthanimate.html
index f37df420f5f00755a64b99aa0d7573872f4172d8..ee460e994c12a968d2c15f55f80ab9fcbd990539 100644
--- a/doc/classes/realearthanimate.html
+++ b/doc/classes/realearthanimate.html
@@ -138,7 +138,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -163,7 +163,7 @@
 					<div class="tsd-signature tsd-kind-icon">_animate<wbr>Enabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -173,7 +173,7 @@
 					<div class="tsd-signature tsd-kind-icon">_current<wbr>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L34">mixin/RealEarthAnimate.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L34">mixin/RealEarthAnimate.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -183,7 +183,7 @@
 					<div class="tsd-signature tsd-kind-icon">_current<wbr>Time<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -193,7 +193,7 @@
 					<div class="tsd-signature tsd-kind-icon">_local<wbr>Dates<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -203,7 +203,7 @@
 					<div class="tsd-signature tsd-kind-icon">_products<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -213,7 +213,7 @@
 					<div class="tsd-signature tsd-kind-icon">_raw<wbr>Date<wbr>Strings<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -223,7 +223,7 @@
 					<div class="tsd-signature tsd-kind-icon">load<wbr>Callback<span class="tsd-signature-symbol">:</span> <a href="../interfaces/timesloadedcallback.html" class="tsd-signature-type">timesLoadedCallback</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<div class="tsd-signature tsd-kind-icon">local<wbr>Times<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -243,7 +243,7 @@
 					<div class="tsd-signature tsd-kind-icon">lyr<span class="tsd-signature-symbol">:</span> <a href="layerrealearthtile.html" class="tsd-signature-type">LayerRealEarthTile</a><span class="tsd-signature-symbol"> | </span><a href="layervectorrealearth.html" class="tsd-signature-type">LayerVectorRealEarth</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -260,7 +260,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L90">mixin/RealEarthAnimate.ts:90</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L90">mixin/RealEarthAnimate.ts:90</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -292,7 +292,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L115">mixin/RealEarthAnimate.ts:115</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L115">mixin/RealEarthAnimate.ts:115</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -312,7 +312,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L131">mixin/RealEarthAnimate.ts:131</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L131">mixin/RealEarthAnimate.ts:131</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -341,7 +341,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L58">mixin/RealEarthAnimate.ts:58</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L58">mixin/RealEarthAnimate.ts:58</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/realearthanimatetile.html b/doc/classes/realearthanimatetile.html
index db0b3cab3f78560762616bdb3f3a48c8d7c66af6..f9bea2261bde6ba62ab77d43abaa5903a34c27c5 100644
--- a/doc/classes/realearthanimatetile.html
+++ b/doc/classes/realearthanimatetile.html
@@ -143,7 +143,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L17">mixin/RealEarthAnimateTile.ts:17</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L17">mixin/RealEarthAnimateTile.ts:17</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -187,7 +187,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_animateenabled">_animateEnabled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -198,7 +198,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_currentindex">_currentIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L34">mixin/RealEarthAnimate.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L34">mixin/RealEarthAnimate.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -209,7 +209,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_currenttime">_currentTime</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -220,7 +220,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_localdates">_localDates</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -230,7 +230,7 @@
 					<div class="tsd-signature tsd-kind-icon">_ol<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Tile</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L17">mixin/RealEarthAnimateTile.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L17">mixin/RealEarthAnimateTile.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -241,7 +241,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_products">_products</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -252,7 +252,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_rawdatestrings">_rawDateStrings</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -262,7 +262,7 @@
 					<div class="tsd-signature tsd-kind-icon">_source<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">XYZ</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L16">mixin/RealEarthAnimateTile.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L16">mixin/RealEarthAnimateTile.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -272,7 +272,7 @@
 					<div class="tsd-signature tsd-kind-icon">_source<wbr>Urls<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L15">mixin/RealEarthAnimateTile.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L15">mixin/RealEarthAnimateTile.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -294,7 +294,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#localtimes">localTimes</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -305,7 +305,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#lyr">lyr</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -323,7 +323,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_loaddates">_loadDates</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L32">mixin/RealEarthAnimateTile.ts:32</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L32">mixin/RealEarthAnimateTile.ts:32</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -347,7 +347,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_loadlatest">_loadLatest</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L43">mixin/RealEarthAnimateTile.ts:43</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L43">mixin/RealEarthAnimateTile.ts:43</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -367,7 +367,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#setlayertime">setLayerTime</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L50">mixin/RealEarthAnimateTile.ts:50</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L50">mixin/RealEarthAnimateTile.ts:50</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -391,7 +391,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#timeinit">timeInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L27">mixin/RealEarthAnimateTile.ts:27</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L27">mixin/RealEarthAnimateTile.ts:27</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
diff --git a/doc/classes/realearthanimatevector.html b/doc/classes/realearthanimatevector.html
index 47ff9a1d112197fdf4c71d45c83f41198abe45cf..be7bf8a9e640a6eb8102b44b692af4df962e2bac 100644
--- a/doc/classes/realearthanimatevector.html
+++ b/doc/classes/realearthanimatevector.html
@@ -147,7 +147,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L22">mixin/RealEarthAnimateVector.ts:22</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L22">mixin/RealEarthAnimateVector.ts:22</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -191,7 +191,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_animateenabled">_animateEnabled</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L33">mixin/RealEarthAnimate.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -202,7 +202,7 @@
 					<aside class="tsd-sources">
 						<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_currentindex">_currentIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L20">mixin/RealEarthAnimateVector.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L20">mixin/RealEarthAnimateVector.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -213,7 +213,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_currenttime">_currentTime</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L40">mixin/RealEarthAnimate.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -223,7 +223,7 @@
 					<div class="tsd-signature tsd-kind-icon">_data<wbr>Cache<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Object</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L17">mixin/RealEarthAnimateVector.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L17">mixin/RealEarthAnimateVector.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -234,7 +234,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_localdates">_localDates</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L35">mixin/RealEarthAnimate.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<div class="tsd-signature tsd-kind-icon">_lyr<span class="tsd-signature-symbol">:</span> <a href="layervectorrealearth.html" class="tsd-signature-type">LayerVectorRealEarth</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L22">mixin/RealEarthAnimateVector.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L22">mixin/RealEarthAnimateVector.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -254,7 +254,7 @@
 					<div class="tsd-signature tsd-kind-icon">_ol<wbr>Layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L21">mixin/RealEarthAnimateVector.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L21">mixin/RealEarthAnimateVector.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -265,7 +265,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_products">_products</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L37">mixin/RealEarthAnimate.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -276,7 +276,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_rawdatestrings">_rawDateStrings</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L36">mixin/RealEarthAnimate.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -286,7 +286,7 @@
 					<div class="tsd-signature tsd-kind-icon">_raw<wbr>Times<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L19">mixin/RealEarthAnimateVector.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L19">mixin/RealEarthAnimateVector.ts:19</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -304,7 +304,7 @@
 					<div class="tsd-signature tsd-kind-icon">_source<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L18">mixin/RealEarthAnimateVector.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L18">mixin/RealEarthAnimateVector.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -315,7 +315,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L38">mixin/RealEarthAnimate.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -326,7 +326,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#localtimes">localTimes</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L39">mixin/RealEarthAnimate.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -337,7 +337,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#lyr">lyr</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L42">mixin/RealEarthAnimate.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -354,7 +354,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L75">mixin/RealEarthAnimateVector.ts:75</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L75">mixin/RealEarthAnimateVector.ts:75</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -389,7 +389,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_loaddates">_loadDates</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L46">mixin/RealEarthAnimateVector.ts:46</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L46">mixin/RealEarthAnimateVector.ts:46</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -420,7 +420,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L101">mixin/RealEarthAnimateVector.ts:101</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L101">mixin/RealEarthAnimateVector.ts:101</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -452,7 +452,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#_loadlatest">_loadLatest</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L56">mixin/RealEarthAnimateVector.ts:56</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L56">mixin/RealEarthAnimateVector.ts:56</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -472,7 +472,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#setlayertime">setLayerTime</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L106">mixin/RealEarthAnimateVector.ts:106</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L106">mixin/RealEarthAnimateVector.ts:106</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -496,7 +496,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="realearthanimate.html">RealEarthAnimate</a>.<a href="realearthanimate.html#timeinit">timeInit</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L35">mixin/RealEarthAnimateVector.ts:35</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L35">mixin/RealEarthAnimateVector.ts:35</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/selectarea.html b/doc/classes/selectarea.html
index f0795384842781082e47ea695381a05ffb9afd79..95ae70c0ff99e5e11105e21d2e021244821647ec 100644
--- a/doc/classes/selectarea.html
+++ b/doc/classes/selectarea.html
@@ -139,7 +139,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L25">reactCompoents/SelectArea.tsx:25</a></li>
+									<li>Defined in reactComponents/SelectArea.tsx:25</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -164,7 +164,7 @@
 					<div class="tsd-signature tsd-kind-icon">area<wbr>Overlay<span class="tsd-signature-symbol">:</span> <a href="layerbasevectorgeojson.html" class="tsd-signature-type">LayerBaseVectorGeoJson</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L20">reactCompoents/SelectArea.tsx:20</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:20</li>
 						</ul>
 					</aside>
 				</section>
@@ -174,7 +174,7 @@
 					<div class="tsd-signature tsd-kind-icon">callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L19">reactCompoents/SelectArea.tsx:19</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:19</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -205,7 +205,7 @@
 					<div class="tsd-signature tsd-kind-icon">cancel<wbr>Button<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLButtonElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L25">reactCompoents/SelectArea.tsx:25</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:25</li>
 						</ul>
 					</aside>
 				</section>
@@ -215,7 +215,7 @@
 					<div class="tsd-signature tsd-kind-icon">cancel<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L23">reactCompoents/SelectArea.tsx:23</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:23</li>
 						</ul>
 					</aside>
 				</section>
@@ -236,7 +236,7 @@
 					<div class="tsd-signature tsd-kind-icon">draw<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Draw</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L21">reactCompoents/SelectArea.tsx:21</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:21</li>
 						</ul>
 					</aside>
 				</section>
@@ -246,7 +246,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L18">reactCompoents/SelectArea.tsx:18</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:18</li>
 						</ul>
 					</aside>
 				</section>
@@ -286,7 +286,7 @@
 					<div class="tsd-signature tsd-kind-icon">select<wbr>Button<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLButtonElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L24">reactCompoents/SelectArea.tsx:24</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:24</li>
 						</ul>
 					</aside>
 				</section>
@@ -296,7 +296,7 @@
 					<div class="tsd-signature tsd-kind-icon">select<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L22">reactCompoents/SelectArea.tsx:22</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:22</li>
 						</ul>
 					</aside>
 				</section>
@@ -324,7 +324,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L100">reactCompoents/SelectArea.tsx:100</a></li>
+									<li>Defined in reactComponents/SelectArea.tsx:100</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -341,7 +341,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L80">reactCompoents/SelectArea.tsx:80</a></li>
+									<li>Defined in reactComponents/SelectArea.tsx:80</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -395,7 +395,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L113">reactCompoents/SelectArea.tsx:113</a></li>
+									<li>Defined in reactComponents/SelectArea.tsx:113</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
@@ -412,7 +412,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L87">reactCompoents/SelectArea.tsx:87</a></li>
+									<li>Defined in reactComponents/SelectArea.tsx:87</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
diff --git a/doc/classes/selectboxbase.html b/doc/classes/selectboxbase.html
index 8554c9ca052aaab2125bf031d4f89d5085db1df8..bb624bb2d203724e8285b6468a782cb5d1e8d46d 100644
--- a/doc/classes/selectboxbase.html
+++ b/doc/classes/selectboxbase.html
@@ -123,7 +123,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L32">domUtil/SelectBoxBase.ts:32</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L32">domUtil/SelectBoxBase.ts:32</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -158,7 +158,7 @@
 					<div class="tsd-signature tsd-kind-icon">$label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L30">domUtil/SelectBoxBase.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L30">domUtil/SelectBoxBase.ts:30</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -168,7 +168,7 @@
 					<div class="tsd-signature tsd-kind-icon">_$container<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L29">domUtil/SelectBoxBase.ts:29</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L29">domUtil/SelectBoxBase.ts:29</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -178,7 +178,7 @@
 					<div class="tsd-signature tsd-kind-icon">_box<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L31">domUtil/SelectBoxBase.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L31">domUtil/SelectBoxBase.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -188,7 +188,7 @@
 					<div class="tsd-signature tsd-kind-icon">_change<wbr>Listeners<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/selectchangecallback.html" class="tsd-signature-type">selectChangeCallback</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L32">domUtil/SelectBoxBase.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L32">domUtil/SelectBoxBase.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -205,7 +205,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L81">domUtil/SelectBoxBase.ts:81</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L81">domUtil/SelectBoxBase.ts:81</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -224,7 +224,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L126">domUtil/SelectBoxBase.ts:126</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L126">domUtil/SelectBoxBase.ts:126</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
@@ -242,7 +242,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L102">domUtil/SelectBoxBase.ts:102</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L102">domUtil/SelectBoxBase.ts:102</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span>
@@ -253,7 +253,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L122">domUtil/SelectBoxBase.ts:122</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L122">domUtil/SelectBoxBase.ts:122</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -285,7 +285,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L97">domUtil/SelectBoxBase.ts:97</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L97">domUtil/SelectBoxBase.ts:97</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -312,7 +312,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L85">domUtil/SelectBoxBase.ts:85</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L85">domUtil/SelectBoxBase.ts:85</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
diff --git a/doc/classes/singlesymbol.html b/doc/classes/singlesymbol.html
index 2d2e25e000eb6b3d35bad66c76da80753c8f52e0..ba04e12d617d0ca23ba89eef08a5a2b0463a572c 100644
--- a/doc/classes/singlesymbol.html
+++ b/doc/classes/singlesymbol.html
@@ -115,7 +115,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L220">olHelpers/esriToOlStyle.ts:220</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L220">olHelpers/esriToOlStyle.ts:220</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -153,7 +153,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#legendhtml">legendHtml</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -164,7 +164,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#olstyle">olStyle</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -175,7 +175,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -186,7 +186,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#renderer">renderer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -196,7 +196,7 @@
 					<div class="tsd-signature tsd-kind-icon">symbol<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iesrisymbol.html" class="tsd-signature-type">iEsriSymbol</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L220">olHelpers/esriToOlStyle.ts:220</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L220">olHelpers/esriToOlStyle.ts:220</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/slider.html b/doc/classes/slider.html
index af0fbf8ca551859d0527a09608e708f8bbf06581..38e8289fbd3bc63249b9a25b13419f93b4bff937 100644
--- a/doc/classes/slider.html
+++ b/doc/classes/slider.html
@@ -146,7 +146,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.__constructor</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L33">reactCompoents/Slider.tsx:33</a></li>
+									<li>Defined in reactComponents/Slider.tsx:33</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -182,7 +182,7 @@
 					<div class="tsd-signature tsd-kind-icon">el<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLInputElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L25">reactCompoents/Slider.tsx:25</a></li>
+							<li>Defined in reactComponents/Slider.tsx:25</li>
 						</ul>
 					</aside>
 				</section>
@@ -192,7 +192,7 @@
 					<div class="tsd-signature tsd-kind-icon">end<wbr>Button<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLButtonElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L27">reactCompoents/Slider.tsx:27</a></li>
+							<li>Defined in reactComponents/Slider.tsx:27</li>
 						</ul>
 					</aside>
 				</section>
@@ -202,7 +202,7 @@
 					<div class="tsd-signature tsd-kind-icon">end<wbr>Uid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L23">reactCompoents/Slider.tsx:23</a></li>
+							<li>Defined in reactComponents/Slider.tsx:23</li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<div class="tsd-signature tsd-kind-icon">interval<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L29">reactCompoents/Slider.tsx:29</a></li>
+							<li>Defined in reactComponents/Slider.tsx:29</li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<div class="tsd-signature tsd-kind-icon">interval<wbr>Select<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLSelectElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L28">reactCompoents/Slider.tsx:28</a></li>
+							<li>Defined in reactComponents/Slider.tsx:28</li>
 						</ul>
 					</aside>
 				</section>
@@ -232,7 +232,7 @@
 					<div class="tsd-signature tsd-kind-icon">interval<wbr>Uid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L24">reactCompoents/Slider.tsx:24</a></li>
+							<li>Defined in reactComponents/Slider.tsx:24</li>
 						</ul>
 					</aside>
 				</section>
@@ -242,7 +242,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L32">reactCompoents/Slider.tsx:32</a></li>
+							<li>Defined in reactComponents/Slider.tsx:32</li>
 						</ul>
 					</aside>
 				</section>
@@ -252,7 +252,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L31">reactCompoents/Slider.tsx:31</a></li>
+							<li>Defined in reactComponents/Slider.tsx:31</li>
 						</ul>
 					</aside>
 				</section>
@@ -292,7 +292,7 @@
 					<div class="tsd-signature tsd-kind-icon">running<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L30">reactCompoents/Slider.tsx:30</a></li>
+							<li>Defined in reactComponents/Slider.tsx:30</li>
 						</ul>
 					</aside>
 				</section>
@@ -302,7 +302,7 @@
 					<div class="tsd-signature tsd-kind-icon">start<wbr>Button<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLButtonElement</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L26">reactCompoents/Slider.tsx:26</a></li>
+							<li>Defined in reactComponents/Slider.tsx:26</li>
 						</ul>
 					</aside>
 				</section>
@@ -312,7 +312,7 @@
 					<div class="tsd-signature tsd-kind-icon">start<wbr>Uid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L22">reactCompoents/Slider.tsx:22</a></li>
+							<li>Defined in reactComponents/Slider.tsx:22</li>
 						</ul>
 					</aside>
 				</section>
@@ -333,7 +333,7 @@
 					<div class="tsd-signature tsd-kind-icon">step<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L33">reactCompoents/Slider.tsx:33</a></li>
+							<li>Defined in reactComponents/Slider.tsx:33</li>
 						</ul>
 					</aside>
 				</section>
@@ -343,7 +343,7 @@
 					<div class="tsd-signature tsd-kind-icon">uid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L21">reactCompoents/Slider.tsx:21</a></li>
+							<li>Defined in reactComponents/Slider.tsx:21</li>
 						</ul>
 					</aside>
 				</section>
@@ -360,7 +360,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L44">reactCompoents/Slider.tsx:44</a></li>
+									<li>Defined in reactComponents/Slider.tsx:44</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -414,7 +414,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides Component.render</p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L91">reactCompoents/Slider.tsx:91</a></li>
+									<li>Defined in reactComponents/Slider.tsx:91</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
@@ -431,7 +431,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L83">reactCompoents/Slider.tsx:83</a></li>
+									<li>Defined in reactComponents/Slider.tsx:83</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -551,7 +551,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L61">reactCompoents/Slider.tsx:61</a></li>
+									<li>Defined in reactComponents/Slider.tsx:61</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -568,7 +568,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L77">reactCompoents/Slider.tsx:77</a></li>
+									<li>Defined in reactComponents/Slider.tsx:77</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -585,7 +585,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L54">reactCompoents/Slider.tsx:54</a></li>
+									<li>Defined in reactComponents/Slider.tsx:54</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
diff --git a/doc/classes/sortedfeatures.html b/doc/classes/sortedfeatures.html
index a2b517a36a6476409cddc6a221698d8ec5ac044d..af8e3091372165952f57651345903349ffcbbae7 100644
--- a/doc/classes/sortedfeatures.html
+++ b/doc/classes/sortedfeatures.html
@@ -120,7 +120,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L14">olHelpers/SortedFeatures.ts:14</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L14">olHelpers/SortedFeatures.ts:14</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -157,7 +157,7 @@
 					<div class="tsd-signature tsd-kind-icon">_property<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L14">olHelpers/SortedFeatures.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L14">olHelpers/SortedFeatures.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -167,7 +167,7 @@
 					<div class="tsd-signature tsd-kind-icon">property<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L13">olHelpers/SortedFeatures.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L13">olHelpers/SortedFeatures.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -177,7 +177,7 @@
 					<div class="tsd-signature tsd-kind-icon">sorted<wbr>Features<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Feature</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L12">olHelpers/SortedFeatures.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L12">olHelpers/SortedFeatures.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -194,7 +194,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L60">olHelpers/SortedFeatures.ts:60</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L60">olHelpers/SortedFeatures.ts:60</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/symbolgenerator.html b/doc/classes/symbolgenerator.html
index c8cae10fb1f5da132e786f5c364a81de2df191e5..e80dcdbf8aafa776b7741103241284e2d9f2b54e 100644
--- a/doc/classes/symbolgenerator.html
+++ b/doc/classes/symbolgenerator.html
@@ -116,7 +116,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -138,7 +138,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Html<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -148,7 +148,7 @@
 					<div class="tsd-signature tsd-kind-icon">ol<wbr>Style<span class="tsd-signature-symbol">:</span> <a href="../interfaces/istylefunc.html" class="tsd-signature-type">iStyleFunc</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Style</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -158,7 +158,7 @@
 					<div class="tsd-signature tsd-kind-icon">opacity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -168,7 +168,7 @@
 					<div class="tsd-signature tsd-kind-icon">renderer<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iesrirenderer.html" class="tsd-signature-type">iEsriRenderer</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/tippresets.html b/doc/classes/tippresets.html
index 768b60df291c02c3e7049da327ecbbe0cfdada18..522f81fa32002ece4ede7c2fb463a3f69db25246 100644
--- a/doc/classes/tippresets.html
+++ b/doc/classes/tippresets.html
@@ -113,7 +113,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L34">collections/Sliders.ts:34</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L34">collections/Sliders.ts:34</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -135,7 +135,7 @@
 					<div class="tsd-signature tsd-kind-icon">dom<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L34">collections/Sliders.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L34">collections/Sliders.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -146,7 +146,7 @@
 					<aside class="tsd-sources">
 						<p>Implementation of <a href="../interfaces/tippresetconfig.html">TipPresetConfig</a>.<a href="../interfaces/tippresetconfig.html#label">label</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L32">collections/Sliders.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L32">collections/Sliders.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -157,7 +157,7 @@
 					<aside class="tsd-sources">
 						<p>Implementation of <a href="../interfaces/tippresetconfig.html">TipPresetConfig</a>.<a href="../interfaces/tippresetconfig.html#presets">presets</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L33">collections/Sliders.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L33">collections/Sliders.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/classes/tipsliders.html b/doc/classes/tipsliders.html
index 67bec36728ee366e5ecc02beed332bdf0895ac73..7ad25725c3440f5572e9cfff93160799467f1af8 100644
--- a/doc/classes/tipsliders.html
+++ b/doc/classes/tipsliders.html
@@ -135,7 +135,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L298">collections/Sliders.ts:298</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L298">collections/Sliders.ts:298</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -181,7 +181,7 @@
 					<div class="tsd-signature tsd-kind-icon">$container<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JQuery</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L279">collections/Sliders.ts:279</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L279">collections/Sliders.ts:279</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -191,7 +191,7 @@
 					<div class="tsd-signature tsd-kind-icon">locked<wbr>Count<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L281">collections/Sliders.ts:281</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L281">collections/Sliders.ts:281</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -201,7 +201,7 @@
 					<div class="tsd-signature tsd-kind-icon">not<wbr>Locked<wbr>Count<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L282">collections/Sliders.ts:282</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L282">collections/Sliders.ts:282</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -211,7 +211,7 @@
 					<div class="tsd-signature tsd-kind-icon">reserved<wbr>Percent<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L280">collections/Sliders.ts:280</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L280">collections/Sliders.ts:280</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -229,7 +229,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L382">collections/Sliders.ts:382</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L382">collections/Sliders.ts:382</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <a href="../interfaces/changecallback.html" class="tsd-signature-type">ChangeCallback</a></h4>
@@ -237,7 +237,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L386">collections/Sliders.ts:386</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L386">collections/Sliders.ts:386</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -260,7 +260,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L646">collections/Sliders.ts:646</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L646">collections/Sliders.ts:646</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <a href="../interfaces/changeresponse.html" class="tsd-signature-type">ChangeResponse</a></h4>
@@ -280,7 +280,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L530">collections/Sliders.ts:530</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L530">collections/Sliders.ts:530</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -297,7 +297,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L438">collections/Sliders.ts:438</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L438">collections/Sliders.ts:438</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -334,7 +334,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L378">collections/Sliders.ts:378</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L378">collections/Sliders.ts:378</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -351,7 +351,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L409">collections/Sliders.ts:409</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L409">collections/Sliders.ts:409</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -373,7 +373,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L520">collections/Sliders.ts:520</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L520">collections/Sliders.ts:520</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -401,7 +401,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L506">collections/Sliders.ts:506</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L506">collections/Sliders.ts:506</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -424,7 +424,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L391">collections/Sliders.ts:391</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L391">collections/Sliders.ts:391</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@@ -441,7 +441,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L492">collections/Sliders.ts:492</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L492">collections/Sliders.ts:492</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/classes/uniquevaluesymbol.html b/doc/classes/uniquevaluesymbol.html
index c82b14bf49c9b0d3baec2061b623c92db8642560..ee5a1f93abbd351c62c3b4c79c89399b3e4d1e2e 100644
--- a/doc/classes/uniquevaluesymbol.html
+++ b/doc/classes/uniquevaluesymbol.html
@@ -123,7 +123,7 @@
 							<aside class="tsd-sources">
 								<p>Overrides <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#constructor">constructor</a></p>
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L245">olHelpers/esriToOlStyle.ts:245</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L245">olHelpers/esriToOlStyle.ts:245</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -160,7 +160,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Label<wbr>Html<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L240">olHelpers/esriToOlStyle.ts:240</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L240">olHelpers/esriToOlStyle.ts:240</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -170,7 +170,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Style</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L239">olHelpers/esriToOlStyle.ts:239</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L239">olHelpers/esriToOlStyle.ts:239</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -180,7 +180,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Symbol<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iesrisymbol.html" class="tsd-signature-type">iEsriSymbol</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L238">olHelpers/esriToOlStyle.ts:238</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L238">olHelpers/esriToOlStyle.ts:238</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -190,7 +190,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L241">olHelpers/esriToOlStyle.ts:241</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L241">olHelpers/esriToOlStyle.ts:241</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -200,7 +200,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L242">olHelpers/esriToOlStyle.ts:242</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L242">olHelpers/esriToOlStyle.ts:242</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -211,7 +211,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#legendhtml">legendHtml</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L208">olHelpers/esriToOlStyle.ts:208</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#olstyle">olStyle</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L209">olHelpers/esriToOlStyle.ts:209</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L206">olHelpers/esriToOlStyle.ts:206</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -243,7 +243,7 @@
 					<div class="tsd-signature tsd-kind-icon">property<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L237">olHelpers/esriToOlStyle.ts:237</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L237">olHelpers/esriToOlStyle.ts:237</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -253,7 +253,7 @@
 					<div class="tsd-signature tsd-kind-icon">property<wbr>Style<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L243">olHelpers/esriToOlStyle.ts:243</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L243">olHelpers/esriToOlStyle.ts:243</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -272,7 +272,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="symbolgenerator.html">SymbolGenerator</a>.<a href="symbolgenerator.html#renderer">renderer</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L207">olHelpers/esriToOlStyle.ts:207</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -282,7 +282,7 @@
 					<div class="tsd-signature tsd-kind-icon">unique<wbr>Value<wbr>Infos<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L245">olHelpers/esriToOlStyle.ts:245</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L245">olHelpers/esriToOlStyle.ts:245</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -292,7 +292,7 @@
 					<div class="tsd-signature tsd-kind-icon">value<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L244">olHelpers/esriToOlStyle.ts:244</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L244">olHelpers/esriToOlStyle.ts:244</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/globals.html b/doc/globals.html
index d93b5ec763705594b64ab70a5c5f540b073cc5d9..b4812010fb58b729f5341fdc3b053bca66ae6d10 100644
--- a/doc/globals.html
+++ b/doc/globals.html
@@ -253,7 +253,7 @@
 					<div class="tsd-signature tsd-kind-icon">Provider<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> =&nbsp;ReactRedux.Provider</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/reactAndRedux.ts#L12">reactCompoents/reactAndRedux.ts:12</a></li>
+							<li>Defined in reactComponents/reactAndRedux.ts:12</li>
 						</ul>
 					</aside>
 				</section>
@@ -263,7 +263,7 @@
 					<div class="tsd-signature tsd-kind-icon">_zoom<wbr>Res<wbr>Lookup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> =&nbsp;[156543.03392804097, //078271.51696402048, //139135.75848201024, //219567.87924100512, //39783.93962050256, //44891.96981025128, //52445.98490512564, //61222.99245256282, //7611.49622628141, //8305.748113140705, //9152.8740565703525, //1076.43702828517625, //1138.21851414258813, //1219.109257071294063, //139.554628535647032, //144.777314267823516, //152.388657133911758, //161.194328566955879, //170.5971642834779395, //180.29858214173896974, //190.14929107086948487, //200.07464553543474244, //210.03732276771737122, //220.01866138385868561, //230.009330691929342804, //240.004665345964671402, //250.002332672982335701, //260.0011663364911678506, //270.0005831682455839253 //28]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/zoomResolutionConvert.ts#L8">olHelpers/zoomResolutionConvert.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/zoomResolutionConvert.ts#L8">olHelpers/zoomResolutionConvert.ts:8</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -273,7 +273,7 @@
 					<div class="tsd-signature tsd-kind-icon">combine<wbr>Reducers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">combineReducers</span><span class="tsd-signature-symbol"> =&nbsp;Redux.combineReducers</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/reactAndRedux.ts#L14">reactCompoents/reactAndRedux.ts:14</a></li>
+							<li>Defined in reactComponents/reactAndRedux.ts:14</li>
 						</ul>
 					</aside>
 				</section>
@@ -283,7 +283,7 @@
 					<div class="tsd-signature tsd-kind-icon">connect<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> =&nbsp;ReactRedux.connect</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/reactAndRedux.ts#L11">reactCompoents/reactAndRedux.ts:11</a></li>
+							<li>Defined in reactComponents/reactAndRedux.ts:11</li>
 						</ul>
 					</aside>
 				</section>
@@ -293,7 +293,7 @@
 					<div class="tsd-signature tsd-kind-icon">create<wbr>Store<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">StoreCreator</span><span class="tsd-signature-symbol"> =&nbsp;Redux.createStore</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/reactAndRedux.ts#L15">reactCompoents/reactAndRedux.ts:15</a></li>
+							<li>Defined in reactComponents/reactAndRedux.ts:15</li>
 						</ul>
 					</aside>
 				</section>
@@ -303,7 +303,7 @@
 					<div class="tsd-signature tsd-kind-icon">dragged<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> =&nbsp;false</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L10">domUtil/range-change.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L10">domUtil/range-change.ts:10</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -313,7 +313,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Config<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> =&nbsp;[{name: &#x27;Camera&#x27;,itsType: &#x27;cctv&#x27;,minZoom: 11,itsIconConfig: {prop: &#x27;owner&#x27;,defaultName: &#x27;WisDOT&#x27;,defaultIcon: &#x27;cctv.png&#x27;,iconArray: [[&#x27;City of Madison&#x27;, &#x27;Madison&#x27;, &#x27;cctv-mad.png&#x27;]]}},{name: &#x27;Message Signs&#x27;,itsType: &#x27;DMS&#x27;,minZoom: 11,itsIconConfig: {prop: &#x27;dmsType&#x27;,defaultName: &#x27;DMS&#x27;,defaultIcon: &#x27;dms.png&#x27;,iconArray: [[&#x27;pcms&#x27;, &#x27;PCMS&#x27;, &#x27;pcms.png&#x27;]]}},{name: &#x27;ATR&#x27;, itsType: &#x27;atr&#x27;, minZoom: 8, itsIcon: &#x27;atr.png&#x27;, visible: false},{name: &#x27;Lighting&#x27;, itsType: &#x27;light&#x27;, minZoom: 16, itsIcon: &#x27;streetlight.png&#x27;, visible: false, onDemand: true},{name: &#x27;Bluetooth&#x27;, itsType: &#x27;blue&#x27;, minZoom: 10, itsIcon: &#x27;bluetooth.png&#x27;, visible: false},{name: &#x27;Cabinets&#x27;, itsType: &#x27;cabinet&#x27;, minZoom: 10, itsIcon: &#x27;cabinet.png&#x27;, visible: false},{name: &#x27;Hut&#x27;, itsType: &#x27;hut&#x27;, minZoom: 10, itsIcon: &#x27;hut.png&#x27;, visible: false},{name: &#x27;Vault&#x27;, itsType: &#x27;vault&#x27;, minZoom: 13, itsIcon: &#x27;vault.png&#x27;, visible: false},{name: &#x27;Advisory Radio&#x27;, itsType: &#x27;har&#x27;, minZoom: 10, itsIcon: &#x27;har.png&#x27;, visible: false},{name: &#x27;Loop Detectors&#x27;,itsType: &#x27;loop&#x27;,legendCollapse: true,minZoom: 14,visible: false,itsIconConfig: {prop: &#x27;dtctrType&#x27;,defaultName: &#x27;Other&#x27;,defaultIcon: &#x27;loopdetectorother.png&#x27;,iconArray: [[&#x27;detector&#x27;, &#x27;Detector&#x27;, &#x27;loopdetector.png&#x27;],[&#x27;long&#x27;, &#x27;Long&#x27;, &#x27;loopdetectorlong.png&#x27;],[&#x27;zone&#x27;, &#x27;Zone&#x27;, &#x27;loopdetectorzone.png&#x27;]]},onDemand: true},{name: &#x27;Microwave&#x27;, itsType: &#x27;microwave&#x27;, minZoom: 14, itsIcon: &#x27;microwave.png&#x27;, visible: false},{name: &#x27;Pull Box&#x27;, itsType: &#x27;pull&#x27;, minZoom: 14, itsIcon: &#x27;pullbox.png&#x27;, visible: false, onDemand: true},{name: &#x27;RWIS&#x27;, itsType: &#x27;rwis&#x27;, minZoom: 7, itsIcon: &#x27;rwis.png&#x27;, visible: false},{name: &#x27;Ramp Gates&#x27;, itsType: &#x27;gate&#x27;, minZoom: 10, itsIcon: &#x27;rampgate.png&#x27;, visible: false},{name: &#x27;Ramp Meter&#x27;, itsType: &#x27;meter&#x27;, minZoom: 10, itsIcon: &#x27;rampmeter.png&#x27;, visible: false},{name: &#x27;Signal&#x27;, itsType: &#x27;signal&#x27;, minZoom: 13, itsIcon: &#x27;signal.png&#x27;, visible: false, onDemand: true},{name: &#x27;Tower&#x27;, itsType: &#x27;tower&#x27;, minZoom: 10, itsIcon: &#x27;tower.png&#x27;, visible: false},{name: &#x27;Trench&#x27;,itsType: &#x27;trench&#x27;,onDemand: true,visible: false,onDemandDelay: 500,minZoom: 15,legendCollapse: true,itsLineConfig: {prop: &#x27;owner&#x27;,defaultName: &#x27;Other&#x27;,//defaultWidth: 7,defaultColor: colors.hexAlphaToRgbOrRgba(&#x27;#747474&#x27;, 0.8),lineArray: [[&#x27;WisDOT&#x27;, &#x27;WisDOT&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#FF032F&#x27;, 0.7)],[&#x27;WIN&#x27;, &#x27;WIN&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#FFC632&#x27;, 0.7)],[&#x27;USXchange&#x27;, &#x27;USXchange&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#2DFF46&#x27;, 0.7)],[&#x27;AT&amp;T&#x27;, &#x27;AT&amp;T&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#ff2be5&#x27;, 0.7)],[&#x27;Touch America&#x27;, &#x27;Touch America&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#52f3ff&#x27;, 0.7)],[&#x27;Qwest&#x27;, &#x27;Qwest&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#9278ff&#x27;, 0.7)],[&#x27;McLeodUSA&#x27;, &#x27;McLeodUSA&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#2926FF&#x27;, 0.7)],[&#x27;CINC&#x27;, &#x27;CINC&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#CB00FF&#x27;, 0.7)],[&#x27;City of Madison&#x27;, &#x27;Madison&#x27;, colors.hexAlphaToRgbOrRgba(&#x27;#000380&#x27;, 0.7)]]}}]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L12">collections/ItsLayerCollection.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L12">collections/ItsLayerCollection.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -323,7 +323,7 @@
 					<div class="tsd-signature tsd-kind-icon">last<wbr>Val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L11">domUtil/range-change.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L11">domUtil/range-change.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -333,7 +333,7 @@
 					<div class="tsd-signature tsd-kind-icon">layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;C:/Users/glenn/PycharmProjects/webmapsjs/src/layers/index&quot;</span><span class="tsd-signature-symbol"> =&nbsp;_layers</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/index.ts#L6">index.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/index.ts#L6">index.ts:6</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -343,7 +343,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<wbr>Move<span class="tsd-signature-symbol">:</span> <a href="classes/mapmovecls.html" class="tsd-signature-type">MapMoveCls</a><span class="tsd-signature-symbol"> =&nbsp;new MapMoveCls()</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMove.ts#L12">olHelpers/mapMove.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMove.ts#L12">olHelpers/mapMove.ts:12</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-comment tsd-typography">
@@ -363,7 +363,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<wbr>Popup<span class="tsd-signature-symbol">:</span> <a href="classes/mappopupcls.html" class="tsd-signature-type">MapPopupCls</a><span class="tsd-signature-symbol"> =&nbsp;new MapPopupCls() as MapPopupCls</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopup.ts#L11">olHelpers/mapPopup.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopup.ts#L11">olHelpers/mapPopup.ts:11</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-comment tsd-typography">
@@ -383,7 +383,7 @@
 					<div class="tsd-signature tsd-kind-icon">mouse<wbr>Down<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> =&nbsp;false</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L8">domUtil/range-change.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L8">domUtil/range-change.ts:8</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -393,7 +393,7 @@
 					<div class="tsd-signature tsd-kind-icon">mouse<wbr>In<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> =&nbsp;false</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L7">domUtil/range-change.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L7">domUtil/range-change.ts:7</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -403,44 +403,44 @@
 					<div class="tsd-signature tsd-kind-icon">nm<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> =&nbsp;provide(&#x27;util&#x27;)</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/checkDefined.ts#L2">util/checkDefined.ts:2</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L7">util/colors.ts:7</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/zoomResolutionConvert.ts#L6">olHelpers/zoomResolutionConvert.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/makeGuid.ts#L6">util/makeGuid.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L7">layers/LayerBase.ts:7</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapInteractionBase.ts#L6">olHelpers/mapInteractionBase.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L8">olHelpers/mapMoveCls.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L8">layers/LayerBaseVector.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L13">layers/LayerBaseVectorGeoJson.ts:13</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/propertiesZoomStyle.ts#L8">olHelpers/propertiesZoomStyle.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L6">olHelpers/esriToOlStyle.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L11">layers/LayerEsriMapServer.ts:11</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L14">olHelpers/mapPopupCls.ts:14</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L12">layers/LayerItsInventory.ts:12</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/ItsLayerCollection.ts#L9">collections/ItsLayerCollection.ts:9</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L10">layers/LayerBaseVectorEsri.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L9">collections/LayerLegend.ts:9</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L8">collections/Sliders.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/day-range.ts#L5">domUtil/day-range.ts:5</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L5">domUtil/range-change.ts:5</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L9">domUtil/media-control.ts:9</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L7">domUtil/SelectBoxBase.ts:7</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseXyzTile.ts#L7">layers/LayerBaseXyzTile.ts:7</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriTile.ts#L10">layers/LayerEsriTile.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateVector.ts#L9">mixin/RealEarthAnimateVector.ts:9</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L10">layers/LayerRealEarthVector.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L10">mixin/RealEarthAnimate.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimateTile.ts#L8">mixin/RealEarthAnimateTile.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L10">layers/LayerRealEarthTile.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/extentUtil.ts#L9">olHelpers/extentUtil.ts:9</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/layerSwipe.ts#L11">olHelpers/layerSwipe.ts:11</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L8">olHelpers/quickMapBase.ts:8</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMap.ts#L10">olHelpers/quickMap.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapMulti.ts#L10">olHelpers/quickMapMulti.ts:10</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/SortedFeatures.ts#L6">olHelpers/SortedFeatures.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/dateConvert.ts#L6">util/dateConvert.ts:6</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/getUrlParams.ts#L5">util/getUrlParams.ts:5</a></li>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/objectHelpers.ts#L6">util/objectHelpers.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/checkDefined.ts#L2">util/checkDefined.ts:2</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L7">util/colors.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/zoomResolutionConvert.ts#L6">olHelpers/zoomResolutionConvert.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/makeGuid.ts#L6">util/makeGuid.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L7">layers/LayerBase.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapInteractionBase.ts#L6">olHelpers/mapInteractionBase.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L8">olHelpers/mapMoveCls.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L8">layers/LayerBaseVector.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L13">layers/LayerBaseVectorGeoJson.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/propertiesZoomStyle.ts#L8">olHelpers/propertiesZoomStyle.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L6">olHelpers/esriToOlStyle.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L11">layers/LayerEsriMapServer.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L14">olHelpers/mapPopupCls.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L12">layers/LayerItsInventory.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/ItsLayerCollection.ts#L9">collections/ItsLayerCollection.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L10">layers/LayerBaseVectorEsri.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L9">collections/LayerLegend.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L8">collections/Sliders.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/day-range.ts#L5">domUtil/day-range.ts:5</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L5">domUtil/range-change.ts:5</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L9">domUtil/media-control.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L7">domUtil/SelectBoxBase.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseXyzTile.ts#L7">layers/LayerBaseXyzTile.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriTile.ts#L10">layers/LayerEsriTile.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateVector.ts#L9">mixin/RealEarthAnimateVector.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L10">layers/LayerRealEarthVector.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L10">mixin/RealEarthAnimate.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimateTile.ts#L8">mixin/RealEarthAnimateTile.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L10">layers/LayerRealEarthTile.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/extentUtil.ts#L9">olHelpers/extentUtil.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/layerSwipe.ts#L11">olHelpers/layerSwipe.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L8">olHelpers/quickMapBase.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMap.ts#L10">olHelpers/quickMap.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapMulti.ts#L10">olHelpers/quickMapMulti.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/SortedFeatures.ts#L6">olHelpers/SortedFeatures.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/dateConvert.ts#L6">util/dateConvert.ts:6</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/getUrlParams.ts#L5">util/getUrlParams.ts:5</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/objectHelpers.ts#L6">util/objectHelpers.ts:6</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -450,7 +450,7 @@
 					<div class="tsd-signature tsd-kind-icon">offset<wbr>Minutes<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> =&nbsp;(new Date()).getTimezoneOffset()</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L17">mixin/RealEarthAnimate.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L17">mixin/RealEarthAnimate.ts:17</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-comment tsd-typography">
@@ -470,7 +470,7 @@
 					<div class="tsd-signature tsd-kind-icon">proj3070<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span><span class="tsd-signature-symbol"> =&nbsp;new ol.proj.Projection({code: &#x27;EPSG:3070&#x27;})</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/projections.ts#L9">olHelpers/projections.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/projections.ts#L9">olHelpers/projections.ts:9</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -480,7 +480,7 @@
 					<div class="tsd-signature tsd-kind-icon">proj3857<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span><span class="tsd-signature-symbol"> =&nbsp;new ol.proj.Projection({code: &#x27;EPSG:3857&#x27;})</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/projections.ts#L8">olHelpers/projections.ts:8</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/projections.ts#L8">olHelpers/projections.ts:8</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -490,7 +490,7 @@
 					<div class="tsd-signature tsd-kind-icon">proj4326<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span><span class="tsd-signature-symbol"> =&nbsp;new ol.proj.Projection({code: &#x27;EPSG:4326&#x27;})</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/projections.ts#L7">olHelpers/projections.ts:7</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/projections.ts#L7">olHelpers/projections.ts:7</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -500,7 +500,7 @@
 					<div class="tsd-signature tsd-kind-icon">timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> =&nbsp;null</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L9">domUtil/range-change.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L9">domUtil/range-change.ts:9</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -510,7 +510,7 @@
 					<div class="tsd-signature tsd-kind-icon">window<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Window</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/provide.ts#L5">util/provide.ts:5</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/provide.ts#L5">util/provide.ts:5</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-comment tsd-typography">
@@ -532,7 +532,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L16">olHelpers/esriToOlStyle.ts:16</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L16">olHelpers/esriToOlStyle.ts:16</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -567,7 +567,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L16">util/colors.ts:16</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L16">util/colors.ts:16</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -599,7 +599,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/extentUtil.ts#L16">olHelpers/extentUtil.ts:16</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/extentUtil.ts#L16">olHelpers/extentUtil.ts:16</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -637,7 +637,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L48">layers/LayerItsInventory.ts:48</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L48">layers/LayerItsInventory.ts:48</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -669,7 +669,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/helpers/dateFormat.ts#L18">reactCompoents/helpers/dateFormat.ts:18</a></li>
+									<li>Defined in reactComponents/helpers/dateFormat.ts:18</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -695,7 +695,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/dateConvert.ts#L43">util/dateConvert.ts:43</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/dateConvert.ts#L43">util/dateConvert.ts:43</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -727,7 +727,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/dateConvert.ts#L24">util/dateConvert.ts:24</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/dateConvert.ts#L24">util/dateConvert.ts:24</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -759,7 +759,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/helpers/get_map.ts#L4">reactCompoents/helpers/get_map.ts:4</a></li>
+									<li>Defined in reactComponents/helpers/get_map.ts:4</li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -785,7 +785,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L193">layers/LayerItsInventory.ts:193</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L193">layers/LayerItsInventory.ts:193</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -817,7 +817,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L120">layers/LayerItsInventory.ts:120</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L120">layers/LayerItsInventory.ts:120</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -857,7 +857,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/checkDefined.ts#L23">util/checkDefined.ts:23</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/checkDefined.ts#L23">util/checkDefined.ts:23</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -889,7 +889,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/extentUtil.ts#L57">olHelpers/extentUtil.ts:57</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/extentUtil.ts#L57">olHelpers/extentUtil.ts:57</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -929,7 +929,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/getUrlParams.ts#L18">util/getUrlParams.ts:18</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/getUrlParams.ts#L18">util/getUrlParams.ts:18</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -951,7 +951,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L48">util/colors.ts:48</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L48">util/colors.ts:48</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -988,7 +988,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L27">olHelpers/esriToOlStyle.ts:27</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L27">olHelpers/esriToOlStyle.ts:27</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1020,7 +1020,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/getUrlParams.ts#L8">util/getUrlParams.ts:8</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/getUrlParams.ts#L8">util/getUrlParams.ts:8</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1043,7 +1043,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/objectHelpers.ts#L23">util/objectHelpers.ts:23</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/objectHelpers.ts#L23">util/objectHelpers.ts:23</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1087,7 +1087,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/dateConvert.ts#L8">util/dateConvert.ts:8</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/dateConvert.ts#L8">util/dateConvert.ts:8</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1110,7 +1110,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L95">util/colors.ts:95</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L95">util/colors.ts:95</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1172,7 +1172,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L166">util/colors.ts:166</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L166">util/colors.ts:166</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1234,7 +1234,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L304">olHelpers/esriToOlStyle.ts:304</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L304">olHelpers/esriToOlStyle.ts:304</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
@@ -1265,7 +1265,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/makeGuid.ts#L13">util/makeGuid.ts:13</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/makeGuid.ts#L13">util/makeGuid.ts:13</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1288,7 +1288,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L407">olHelpers/esriToOlStyle.ts:407</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L407">olHelpers/esriToOlStyle.ts:407</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1325,7 +1325,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L367">olHelpers/esriToOlStyle.ts:367</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L367">olHelpers/esriToOlStyle.ts:367</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1357,7 +1357,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/propertiesZoomStyle.ts#L24">olHelpers/propertiesZoomStyle.ts:24</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/propertiesZoomStyle.ts#L24">olHelpers/propertiesZoomStyle.ts:24</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1437,7 +1437,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/provide.ts#L11">util/provide.ts:11</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/provide.ts#L11">util/provide.ts:11</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1469,7 +1469,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMap.ts#L30">olHelpers/quickMap.ts:30</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMap.ts#L30">olHelpers/quickMap.ts:30</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1499,7 +1499,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L36">olHelpers/quickMapBase.ts:36</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L36">olHelpers/quickMapBase.ts:36</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1529,7 +1529,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapMulti.ts#L36">olHelpers/quickMapMulti.ts:36</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapMulti.ts#L36">olHelpers/quickMapMulti.ts:36</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1570,7 +1570,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L71">domUtil/range-change.ts:71</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L71">domUtil/range-change.ts:71</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1616,7 +1616,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/zoomResolutionConvert.ts#L68">olHelpers/zoomResolutionConvert.ts:68</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/zoomResolutionConvert.ts#L68">olHelpers/zoomResolutionConvert.ts:68</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1648,7 +1648,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L33">util/colors.ts:33</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L33">util/colors.ts:33</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1680,7 +1680,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/colors.ts#L69">util/colors.ts:69</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/colors.ts#L69">util/colors.ts:69</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1718,7 +1718,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/helpers/dateFormat.ts#L5">reactCompoents/helpers/dateFormat.ts:5</a></li>
+									<li>Defined in reactComponents/helpers/dateFormat.ts:5</li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1746,7 +1746,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L16">domUtil/media-control.ts:16</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L16">domUtil/media-control.ts:16</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1778,7 +1778,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L40">domUtil/range-change.ts:40</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L40">domUtil/range-change.ts:40</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1809,7 +1809,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/checkDefined.ts#L9">util/checkDefined.ts:9</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/checkDefined.ts#L9">util/checkDefined.ts:9</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
@@ -1841,7 +1841,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/zoomResolutionConvert.ts#L45">olHelpers/zoomResolutionConvert.ts:45</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/zoomResolutionConvert.ts#L45">olHelpers/zoomResolutionConvert.ts:45</a></li>
 								</ul>
 							</aside>
 							<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/changecallback.html b/doc/interfaces/changecallback.html
index 51b558ff489dd25185598e0d5a20c7e230029b63..7f50c00076904c30d174103af87c7bd8dbb6d080 100644
--- a/doc/interfaces/changecallback.html
+++ b/doc/interfaces/changecallback.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L26">collections/Sliders.ts:26</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L26">collections/Sliders.ts:26</a></li>
 							</ul>
 						</aside>
 						<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/changefunction.html b/doc/interfaces/changefunction.html
index a8c6469eaa9c12b0624e24fdcb2fa89c1a7c8285..0c219fee398f8dc4bf345fd760cace4b7962bc9c 100644
--- a/doc/interfaces/changefunction.html
+++ b/doc/interfaces/changefunction.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L26">domUtil/media-control.ts:26</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L26">domUtil/media-control.ts:26</a></li>
 							</ul>
 						</aside>
 						<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/changeresponse.html b/doc/interfaces/changeresponse.html
index bf379e5decfc81294276c4a1d244be9a4998745c..33909f88b184e858f4471209d346a39fea9eac83 100644
--- a/doc/interfaces/changeresponse.html
+++ b/doc/interfaces/changeresponse.html
@@ -97,7 +97,7 @@
 					<div class="tsd-signature tsd-kind-icon">mm<wbr>Version<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L23">collections/Sliders.ts:23</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L23">collections/Sliders.ts:23</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -107,7 +107,7 @@
 					<div class="tsd-signature tsd-kind-icon">param<wbr>Weights<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L21">collections/Sliders.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L21">collections/Sliders.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -117,7 +117,7 @@
 					<div class="tsd-signature tsd-kind-icon">region<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L22">collections/Sliders.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L22">collections/Sliders.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/contentgenerator.html b/doc/interfaces/contentgenerator.html
index 5154d8a02c6dce02900241b9fc69e8db5f159012..1dd34c736e650c7b7b105603cb5292311996ec9f 100644
--- a/doc/interfaces/contentgenerator.html
+++ b/doc/interfaces/contentgenerator.html
@@ -90,7 +90,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L20">domUtil/SelectBoxBase.ts:20</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L20">domUtil/SelectBoxBase.ts:20</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/crstransform.html b/doc/interfaces/crstransform.html
index b4b8db6b1406d144f3d0abc48eb1cbc8603ae399..8c4ee83819e0aeb5467a66f53a1e5f4aafdf3458 100644
--- a/doc/interfaces/crstransform.html
+++ b/doc/interfaces/crstransform.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">data<wbr>Projection<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L16">layers/LayerBaseVectorGeoJson.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L16">layers/LayerBaseVectorGeoJson.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -106,7 +106,7 @@
 					<div class="tsd-signature tsd-kind-icon">feature<wbr>Projection<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Projection</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L17">layers/LayerBaseVectorGeoJson.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L17">layers/LayerBaseVectorGeoJson.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/extentobject.html b/doc/interfaces/extentobject.html
index 6aee41b2024c78b1e02875081caaa48fecc8d4e5..3b36c80a0be5907fae05283905e6a9765a31b0f1 100644
--- a/doc/interfaces/extentobject.html
+++ b/doc/interfaces/extentobject.html
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">maxX<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L14">olHelpers/mapMoveCls.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L14">olHelpers/mapMoveCls.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -108,7 +108,7 @@
 					<div class="tsd-signature tsd-kind-icon">maxY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L15">olHelpers/mapMoveCls.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L15">olHelpers/mapMoveCls.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -118,7 +118,7 @@
 					<div class="tsd-signature tsd-kind-icon">minX<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L12">olHelpers/mapMoveCls.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L12">olHelpers/mapMoveCls.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -128,7 +128,7 @@
 					<div class="tsd-signature tsd-kind-icon">minY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L13">olHelpers/mapMoveCls.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L13">olHelpers/mapMoveCls.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iaction.html b/doc/interfaces/iaction.html
index 018882c1d9ddf9db89159b8b39075570086b6c22..039882c2a1850f1ff1a5a8161565fc8e9fef8e5b 100644
--- a/doc/interfaces/iaction.html
+++ b/doc/interfaces/iaction.html
@@ -95,7 +95,7 @@
 					<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/reactAndRedux.ts#L20">reactCompoents/reactAndRedux.ts:20</a></li>
+							<li>Defined in reactComponents/reactAndRedux.ts:20</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/icommonsymbol.html b/doc/interfaces/icommonsymbol.html
index 2909e06d31e5cec0eaf7690bd36ea3c60bff0ef1..f69b00d2f970f2489cb49e6ff62c4db56e40e992 100644
--- a/doc/interfaces/icommonsymbol.html
+++ b/doc/interfaces/icommonsymbol.html
@@ -99,7 +99,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L89">olHelpers/esriToOlStyle.ts:89</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L89">olHelpers/esriToOlStyle.ts:89</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/idatepick.html b/doc/interfaces/idatepick.html
index 6ab56e116c5f025181a72c2df2d5bc4689665815..aab756dade37cf495202089c60e5887e6d335126 100644
--- a/doc/interfaces/idatepick.html
+++ b/doc/interfaces/idatepick.html
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">change<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L17">reactCompoents/DatePick.tsx:17</a></li>
+							<li>Defined in reactComponents/DatePick.tsx:17</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -129,7 +129,7 @@
 					<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L15">reactCompoents/DatePick.tsx:15</a></li>
+							<li>Defined in reactComponents/DatePick.tsx:15</li>
 						</ul>
 					</aside>
 				</section>
@@ -139,7 +139,7 @@
 					<div class="tsd-signature tsd-kind-icon">initial<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L16">reactCompoents/DatePick.tsx:16</a></li>
+							<li>Defined in reactComponents/DatePick.tsx:16</li>
 						</ul>
 					</aside>
 				</section>
@@ -149,7 +149,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DatePick.tsx#L14">reactCompoents/DatePick.tsx:14</a></li>
+							<li>Defined in reactComponents/DatePick.tsx:14</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/idaterange.html b/doc/interfaces/idaterange.html
index 7809ebad7afe1f92795901f8732695c498847656..bbe78d7260b6284a8883ba9bec0c8aa52cf12a99 100644
--- a/doc/interfaces/idaterange.html
+++ b/doc/interfaces/idaterange.html
@@ -100,7 +100,7 @@
 					<div class="tsd-signature tsd-kind-icon">callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L22">reactCompoents/DateRange.tsx:22</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:22</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -134,7 +134,7 @@
 					<div class="tsd-signature tsd-kind-icon">initial<wbr>End<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L26">reactCompoents/DateRange.tsx:26</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:26</li>
 						</ul>
 					</aside>
 				</section>
@@ -144,7 +144,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L24">reactCompoents/DateRange.tsx:24</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:24</li>
 						</ul>
 					</aside>
 				</section>
@@ -154,7 +154,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L21">reactCompoents/DateRange.tsx:21</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:21</li>
 						</ul>
 					</aside>
 				</section>
@@ -164,7 +164,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Date<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Date</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L25">reactCompoents/DateRange.tsx:25</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:25</li>
 						</ul>
 					</aside>
 				</section>
@@ -174,7 +174,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Range<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/DateRange.tsx#L23">reactCompoents/DateRange.tsx:23</a></li>
+							<li>Defined in reactComponents/DateRange.tsx:23</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iesrirenderer.html b/doc/interfaces/iesrirenderer.html
index a8961dac5615d52e0f77cb83b5fd70e264490372..27a32d7d455c52740480b71b188bbab885ba05ed 100644
--- a/doc/interfaces/iesrirenderer.html
+++ b/doc/interfaces/iesrirenderer.html
@@ -100,7 +100,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L54">olHelpers/esriToOlStyle.ts:54</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L54">olHelpers/esriToOlStyle.ts:54</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -110,7 +110,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Symbol<span class="tsd-signature-symbol">:</span> <a href="iesrisymbol.html" class="tsd-signature-type">iEsriSymbol</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L53">olHelpers/esriToOlStyle.ts:53</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L53">olHelpers/esriToOlStyle.ts:53</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -120,7 +120,7 @@
 					<div class="tsd-signature tsd-kind-icon">field1<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L52">olHelpers/esriToOlStyle.ts:52</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L52">olHelpers/esriToOlStyle.ts:52</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -130,7 +130,7 @@
 					<div class="tsd-signature tsd-kind-icon">symbol<span class="tsd-signature-symbol">:</span> <a href="iesrisymbol.html" class="tsd-signature-type">iEsriSymbol</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L50">olHelpers/esriToOlStyle.ts:50</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L50">olHelpers/esriToOlStyle.ts:50</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -140,7 +140,7 @@
 					<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L49">olHelpers/esriToOlStyle.ts:49</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L49">olHelpers/esriToOlStyle.ts:49</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -150,7 +150,7 @@
 					<div class="tsd-signature tsd-kind-icon">unique<wbr>Value<wbr>Infos<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L51">olHelpers/esriToOlStyle.ts:51</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L51">olHelpers/esriToOlStyle.ts:51</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iesriresponse.html b/doc/interfaces/iesriresponse.html
index 62f9db04264e608c1de4293b2815eae0e84180c1..a93ff454e459d6a75700b8d3c36159eaf8f7eadc 100644
--- a/doc/interfaces/iesriresponse.html
+++ b/doc/interfaces/iesriresponse.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">drawing<wbr>Info<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L40">olHelpers/esriToOlStyle.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L40">olHelpers/esriToOlStyle.ts:40</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -117,7 +117,7 @@
 					<div class="tsd-signature tsd-kind-icon">geometry<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L44">olHelpers/esriToOlStyle.ts:44</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L44">olHelpers/esriToOlStyle.ts:44</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iesrisymbol.html b/doc/interfaces/iesrisymbol.html
index 7dacef71b86eb80a0727cebd976bbf8c12cf78cc..1b89c3bdbe10bbe81d4a609b355e073908c155f2 100644
--- a/doc/interfaces/iesrisymbol.html
+++ b/doc/interfaces/iesrisymbol.html
@@ -100,7 +100,7 @@
 					<div class="tsd-signature tsd-kind-icon">color<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L64">olHelpers/esriToOlStyle.ts:64</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L64">olHelpers/esriToOlStyle.ts:64</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -110,7 +110,7 @@
 					<div class="tsd-signature tsd-kind-icon">image<wbr>Data<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L66">olHelpers/esriToOlStyle.ts:66</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L66">olHelpers/esriToOlStyle.ts:66</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -120,7 +120,7 @@
 					<div class="tsd-signature tsd-kind-icon">outline<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L60">olHelpers/esriToOlStyle.ts:60</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L60">olHelpers/esriToOlStyle.ts:60</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -141,7 +141,7 @@
 					<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L58">olHelpers/esriToOlStyle.ts:58</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L58">olHelpers/esriToOlStyle.ts:58</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -151,7 +151,7 @@
 					<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L59">olHelpers/esriToOlStyle.ts:59</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L59">olHelpers/esriToOlStyle.ts:59</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -161,7 +161,7 @@
 					<div class="tsd-signature tsd-kind-icon">width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L65">olHelpers/esriToOlStyle.ts:65</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L65">olHelpers/esriToOlStyle.ts:65</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iiconconfig.html b/doc/interfaces/iiconconfig.html
index a1170a39eca6984fba56bcf965472c6eb6f10a3d..af06a049f558e1ec490b014803beb1d54cdebdcc 100644
--- a/doc/interfaces/iiconconfig.html
+++ b/doc/interfaces/iiconconfig.html
@@ -103,7 +103,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Icon<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L26">layers/LayerItsInventory.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L26">layers/LayerItsInventory.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -114,7 +114,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="imulticonfig.html">iMultiConfig</a>.<a href="imulticonfig.html#defaultname">defaultName</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -124,7 +124,7 @@
 					<div class="tsd-signature tsd-kind-icon">icon<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L27">layers/LayerItsInventory.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L27">layers/LayerItsInventory.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -135,7 +135,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="imulticonfig.html">iMultiConfig</a>.<a href="imulticonfig.html#prop">prop</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/ilayeritsinventory.html b/doc/interfaces/ilayeritsinventory.html
index a0588b1c3be8b48f35715497401de8c64eb6d9b8..a16ef58753924882c6a6d4ce757ad3c2a37a7d60 100644
--- a/doc/interfaces/ilayeritsinventory.html
+++ b/doc/interfaces/ilayeritsinventory.html
@@ -125,7 +125,7 @@
 					<div class="tsd-signature tsd-kind-icon">add<wbr>Popup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L38">layers/LayerItsInventory.ts:38</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L38">layers/LayerItsInventory.ts:38</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -136,7 +136,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#autoload">autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -147,7 +147,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -157,7 +157,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Icon<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L39">layers/LayerItsInventory.ts:39</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L39">layers/LayerItsInventory.ts:39</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -167,7 +167,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Icon<wbr>Config<span class="tsd-signature-symbol">:</span> <a href="iiconconfig.html" class="tsd-signature-type">iIconConfig</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L41">layers/LayerItsInventory.ts:41</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L41">layers/LayerItsInventory.ts:41</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -177,7 +177,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Line<wbr>Config<span class="tsd-signature-symbol">:</span> <a href="ilineconfig.html" class="tsd-signature-type">iLineConfig</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L42">layers/LayerItsInventory.ts:42</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L42">layers/LayerItsInventory.ts:42</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -187,7 +187,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Line<wbr>Style<span class="tsd-signature-symbol">:</span> <a href="ilinestyle.html" class="tsd-signature-type">iLineStyle</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L40">layers/LayerItsInventory.ts:40</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L40">layers/LayerItsInventory.ts:40</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -197,7 +197,7 @@
 					<div class="tsd-signature tsd-kind-icon">its<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L37">layers/LayerItsInventory.ts:37</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L37">layers/LayerItsInventory.ts:37</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -208,7 +208,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -219,7 +219,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -230,7 +230,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -241,7 +241,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -252,7 +252,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -264,7 +264,7 @@
 						<p>Inherited from <a href="layerbasevectorgeojsonoptions.html">LayerBaseVectorGeoJsonOptions</a>.<a href="layerbasevectorgeojsonoptions.html#mapmoveobj">mapMoveObj</a></p>
 						<p>Overrides <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmoveobj">mapMoveObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -275,7 +275,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -286,7 +286,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -297,7 +297,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -308,7 +308,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemand">onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -319,7 +319,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemanddelay">onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -330,7 +330,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -341,7 +341,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -352,7 +352,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#renderorder">renderOrder</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -387,7 +387,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#style">style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -398,7 +398,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojsonoptions.html">LayerBaseVectorGeoJsonOptions</a>.<a href="layerbasevectorgeojsonoptions.html#transform">transform</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -409,7 +409,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -420,7 +420,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/ilegenditem.html b/doc/interfaces/ilegenditem.html
index 850bc0148359afb27e66d64686dd2541a67dad26..94b8318b4a17fccfad91ba5e8ab908b97904e155 100644
--- a/doc/interfaces/ilegenditem.html
+++ b/doc/interfaces/ilegenditem.html
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">add<wbr>Check<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L18">collections/LayerLegend.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L18">collections/LayerLegend.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -108,7 +108,7 @@
 					<div class="tsd-signature tsd-kind-icon">collapse<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L17">collections/LayerLegend.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L17">collections/LayerLegend.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -118,7 +118,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L16">collections/LayerLegend.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L16">collections/LayerLegend.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -128,7 +128,7 @@
 					<div class="tsd-signature tsd-kind-icon">items<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><a href="ilegenditem.html" class="tsd-signature-type">iLegendItem</a><span class="tsd-signature-symbol"> | </span><a href="../classes/layerbase.html" class="tsd-signature-type">LayerBase</a><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L19">collections/LayerLegend.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L19">collections/LayerLegend.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/ilegendoptions.html b/doc/interfaces/ilegendoptions.html
index 0a974220f21c62deff61ee6f35e36406411768a4..794edb0f3abec9cf124a2aa6bdc7e5b71604e4d4 100644
--- a/doc/interfaces/ilegendoptions.html
+++ b/doc/interfaces/ilegendoptions.html
@@ -97,7 +97,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<wbr>Div<wbr>Classes<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L23">collections/LayerLegend.ts:23</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L23">collections/LayerLegend.ts:23</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -107,7 +107,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Title<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L24">collections/LayerLegend.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L24">collections/LayerLegend.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -117,7 +117,7 @@
 					<div class="tsd-signature tsd-kind-icon">scale<wbr>Dependent<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/LayerLegend.ts#L25">collections/LayerLegend.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/LayerLegend.ts#L25">collections/LayerLegend.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/ilineconfig.html b/doc/interfaces/ilineconfig.html
index 3ff53d809dcd8824b76ee06c6b61f6217d5f6d0b..833f869f387f56e9e38a9572a11d54ce36e2edc4 100644
--- a/doc/interfaces/ilineconfig.html
+++ b/doc/interfaces/ilineconfig.html
@@ -104,7 +104,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Color<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L31">layers/LayerItsInventory.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L31">layers/LayerItsInventory.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -115,7 +115,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="imulticonfig.html">iMultiConfig</a>.<a href="imulticonfig.html#defaultname">defaultName</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -125,7 +125,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L32">layers/LayerItsInventory.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L32">layers/LayerItsInventory.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -135,7 +135,7 @@
 					<div class="tsd-signature tsd-kind-icon">line<wbr>Array<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L33">layers/LayerItsInventory.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L33">layers/LayerItsInventory.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -146,7 +146,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="imulticonfig.html">iMultiConfig</a>.<a href="imulticonfig.html#prop">prop</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/ilinestyle.html b/doc/interfaces/ilinestyle.html
index 28c639b249d542f9d90e75650384f5ccd07104e8..5111d68c7c6c518e37903cca06c8d4be207dc594 100644
--- a/doc/interfaces/ilinestyle.html
+++ b/doc/interfaces/ilinestyle.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">color<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L16">layers/LayerItsInventory.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L16">layers/LayerItsInventory.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -106,7 +106,7 @@
 					<div class="tsd-signature tsd-kind-icon">width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L17">layers/LayerItsInventory.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L17">layers/LayerItsInventory.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/imapservicelegend.html b/doc/interfaces/imapservicelegend.html
index d4da8c5b8f74e98c940855f6cb5a57a40cd552fa..4e8ebea4d4cca725269ffb663f73389969f2e2cc 100644
--- a/doc/interfaces/imapservicelegend.html
+++ b/doc/interfaces/imapservicelegend.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">layer<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L357">olHelpers/esriToOlStyle.ts:357</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L357">olHelpers/esriToOlStyle.ts:357</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -106,7 +106,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L358">olHelpers/esriToOlStyle.ts:358</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L358">olHelpers/esriToOlStyle.ts:358</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
diff --git a/doc/interfaces/imulticonfig.html b/doc/interfaces/imulticonfig.html
index da45c4a6f21c7a0d4e06e36b1534ac54e7bd8fd0..b2e4b5506daa9d616085cf87a760e2c18406dd7c 100644
--- a/doc/interfaces/imulticonfig.html
+++ b/doc/interfaces/imulticonfig.html
@@ -104,7 +104,7 @@
 					<div class="tsd-signature tsd-kind-icon">default<wbr>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L22">layers/LayerItsInventory.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -114,7 +114,7 @@
 					<div class="tsd-signature tsd-kind-icon">prop<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerItsInventory.ts#L21">layers/LayerItsInventory.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iradiobase.html b/doc/interfaces/iradiobase.html
index 4a1733841b65ca6ee7a6668ba3de726f91303fe2..5bd7da3695976a3a816637bc30e8c1ca1f1663b7 100644
--- a/doc/interfaces/iradiobase.html
+++ b/doc/interfaces/iradiobase.html
@@ -100,7 +100,7 @@
 					<div class="tsd-signature tsd-kind-icon">callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L69">reactCompoents/Radio.tsx:69</a></li>
+							<li>Defined in reactComponents/Radio.tsx:69</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -131,7 +131,7 @@
 					<div class="tsd-signature tsd-kind-icon">connected<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L72">reactCompoents/Radio.tsx:72</a></li>
+							<li>Defined in reactComponents/Radio.tsx:72</li>
 						</ul>
 					</aside>
 				</section>
@@ -141,7 +141,7 @@
 					<div class="tsd-signature tsd-kind-icon">inline<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L70">reactCompoents/Radio.tsx:70</a></li>
+							<li>Defined in reactComponents/Radio.tsx:70</li>
 						</ul>
 					</aside>
 				</section>
@@ -151,7 +151,7 @@
 					<div class="tsd-signature tsd-kind-icon">items<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L68">reactCompoents/Radio.tsx:68</a></li>
+							<li>Defined in reactComponents/Radio.tsx:68</li>
 						</ul>
 					</aside>
 				</section>
@@ -161,7 +161,7 @@
 					<div class="tsd-signature tsd-kind-icon">selected<wbr>Value<wbr>OrIndex<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L71">reactCompoents/Radio.tsx:71</a></li>
+							<li>Defined in reactComponents/Radio.tsx:71</li>
 						</ul>
 					</aside>
 				</section>
@@ -171,7 +171,7 @@
 					<div class="tsd-signature tsd-kind-icon">title<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L67">reactCompoents/Radio.tsx:67</a></li>
+							<li>Defined in reactComponents/Radio.tsx:67</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/iradioitem.html b/doc/interfaces/iradioitem.html
index b55b6966c95764fd37702e36a4d7d84eeeabb9e6..219b5125388dd3c6ae50aca34bb4bd189557f306 100644
--- a/doc/interfaces/iradioitem.html
+++ b/doc/interfaces/iradioitem.html
@@ -101,7 +101,7 @@
 					<div class="tsd-signature tsd-kind-icon">change<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L17">reactCompoents/Radio.tsx:17</a></li>
+							<li>Defined in reactComponents/Radio.tsx:17</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -132,7 +132,7 @@
 					<div class="tsd-signature tsd-kind-icon">checked<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L15">reactCompoents/Radio.tsx:15</a></li>
+							<li>Defined in reactComponents/Radio.tsx:15</li>
 						</ul>
 					</aside>
 				</section>
@@ -142,7 +142,7 @@
 					<div class="tsd-signature tsd-kind-icon">connected<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L18">reactCompoents/Radio.tsx:18</a></li>
+							<li>Defined in reactComponents/Radio.tsx:18</li>
 						</ul>
 					</aside>
 				</section>
@@ -152,7 +152,7 @@
 					<div class="tsd-signature tsd-kind-icon">group<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L13">reactCompoents/Radio.tsx:13</a></li>
+							<li>Defined in reactComponents/Radio.tsx:13</li>
 						</ul>
 					</aside>
 				</section>
@@ -162,7 +162,7 @@
 					<div class="tsd-signature tsd-kind-icon">index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L19">reactCompoents/Radio.tsx:19</a></li>
+							<li>Defined in reactComponents/Radio.tsx:19</li>
 						</ul>
 					</aside>
 				</section>
@@ -172,7 +172,7 @@
 					<div class="tsd-signature tsd-kind-icon">inline<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L16">reactCompoents/Radio.tsx:16</a></li>
+							<li>Defined in reactComponents/Radio.tsx:16</li>
 						</ul>
 					</aside>
 				</section>
@@ -182,7 +182,7 @@
 					<div class="tsd-signature tsd-kind-icon">text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Radio.tsx#L14">reactCompoents/Radio.tsx:14</a></li>
+							<li>Defined in reactComponents/Radio.tsx:14</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/irealearthanimate.html b/doc/interfaces/irealearthanimate.html
index 941ab4fb370c40ffe6a946c2f7261aa997e34e8b..3172cb4c59cb923fd0103b88d65d6eb0d1a1b422 100644
--- a/doc/interfaces/irealearthanimate.html
+++ b/doc/interfaces/irealearthanimate.html
@@ -106,7 +106,7 @@
 						<li class="tsd-description">
 							<aside class="tsd-sources">
 								<ul>
-									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L20">mixin/RealEarthAnimate.ts:20</a></li>
+									<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L20">mixin/RealEarthAnimate.ts:20</a></li>
 								</ul>
 							</aside>
 							<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/iselectarea.html b/doc/interfaces/iselectarea.html
index e9759df12762eaaadc779951af9005d0a2ce96aa..b20fc1796fb0c6304fc49e35b88284a8f51b9c98 100644
--- a/doc/interfaces/iselectarea.html
+++ b/doc/interfaces/iselectarea.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L14">reactCompoents/SelectArea.tsx:14</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:14</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -127,7 +127,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/SelectArea.tsx#L13">reactCompoents/SelectArea.tsx:13</a></li>
+							<li>Defined in reactComponents/SelectArea.tsx:13</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/islider.html b/doc/interfaces/islider.html
index d50e1bb81ef90639aa9389e9b93f990784849b40..74d2c4dc2ce88bc3eaf2355fb641b614698ed10b 100644
--- a/doc/interfaces/islider.html
+++ b/doc/interfaces/islider.html
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">animate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L16">reactCompoents/Slider.tsx:16</a></li>
+							<li>Defined in reactComponents/Slider.tsx:16</li>
 						</ul>
 					</aside>
 				</section>
@@ -108,7 +108,7 @@
 					<div class="tsd-signature tsd-kind-icon">change<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L14">reactCompoents/Slider.tsx:14</a></li>
+							<li>Defined in reactComponents/Slider.tsx:14</li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -139,7 +139,7 @@
 					<div class="tsd-signature tsd-kind-icon">steps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L15">reactCompoents/Slider.tsx:15</a></li>
+							<li>Defined in reactComponents/Slider.tsx:15</li>
 						</ul>
 					</aside>
 				</section>
@@ -149,7 +149,7 @@
 					<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/reactCompoents/Slider.tsx#L17">reactCompoents/Slider.tsx:17</a></li>
+							<li>Defined in reactComponents/Slider.tsx:17</li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/istylefunc.html b/doc/interfaces/istylefunc.html
index ff8bf5df21d7b207c37093e8911c5cd32e527f96..ded0f56c1a8916e46ba4a00f14de326b592599be 100644
--- a/doc/interfaces/istylefunc.html
+++ b/doc/interfaces/istylefunc.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/esriToOlStyle.ts#L201">olHelpers/esriToOlStyle.ts:201</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/esriToOlStyle.ts#L201">olHelpers/esriToOlStyle.ts:201</a></li>
 							</ul>
 						</aside>
 						<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/keyvals.html b/doc/interfaces/keyvals.html
index ba6e6160ecdb085b9fcc543b19ab6e49d356cce6..2bd214c264b159702ff4413f1efd68abc52933d2 100644
--- a/doc/interfaces/keyvals.html
+++ b/doc/interfaces/keyvals.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">key<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/objectHelpers.ts#L10">util/objectHelpers.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/objectHelpers.ts#L10">util/objectHelpers.ts:10</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -106,7 +106,7 @@
 					<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/objectHelpers.ts#L11">util/objectHelpers.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/objectHelpers.ts#L11">util/objectHelpers.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layerbaseoptions.html b/doc/interfaces/layerbaseoptions.html
index 8b1bfeb0599f3314ef94a00851813c19182c5394..79dc2ef5c44b12aaef304a476a97ae18718d6e53 100644
--- a/doc/interfaces/layerbaseoptions.html
+++ b/doc/interfaces/layerbaseoptions.html
@@ -120,7 +120,7 @@
 					<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -130,7 +130,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Checkbox<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -140,7 +140,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Collapse<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -150,7 +150,7 @@
 					<div class="tsd-signature tsd-kind-icon">legend<wbr>Content<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -160,7 +160,7 @@
 					<div class="tsd-signature tsd-kind-icon">load<wbr>Callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -170,7 +170,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -180,7 +180,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -190,7 +190,7 @@
 					<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -200,7 +200,7 @@
 					<div class="tsd-signature tsd-kind-icon">opacity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -210,7 +210,7 @@
 					<div class="tsd-signature tsd-kind-icon">params<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -220,7 +220,7 @@
 					<div class="tsd-signature tsd-kind-icon">visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -230,7 +230,7 @@
 					<div class="tsd-signature tsd-kind-icon">z<wbr>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layerbasevectoresrioptions.html b/doc/interfaces/layerbasevectoresrioptions.html
index 73a5c235ac56db2f772845f2dec3a945391646d9..13bf10edc5181cdf26fb61daa09dfcff4aa3c0c5 100644
--- a/doc/interfaces/layerbasevectoresrioptions.html
+++ b/doc/interfaces/layerbasevectoresrioptions.html
@@ -124,7 +124,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#autoload">autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -134,7 +134,7 @@
 					<div class="tsd-signature tsd-kind-icon">format<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L13">layers/LayerBaseVectorEsri.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L13">layers/LayerBaseVectorEsri.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -145,7 +145,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -156,7 +156,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -167,7 +167,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -178,7 +178,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -189,7 +189,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -200,7 +200,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -211,7 +211,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmoveobj">mapMoveObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L29">layers/LayerBaseVector.ts:29</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L29">layers/LayerBaseVector.ts:29</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -255,7 +255,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemand">onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -266,7 +266,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemanddelay">onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -277,7 +277,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -287,7 +287,7 @@
 					<div class="tsd-signature tsd-kind-icon">out<wbr>Fields<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L16">layers/LayerBaseVectorEsri.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L16">layers/LayerBaseVectorEsri.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -297,7 +297,7 @@
 					<div class="tsd-signature tsd-kind-icon">outSR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L14">layers/LayerBaseVectorEsri.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L14">layers/LayerBaseVectorEsri.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -308,7 +308,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -319,7 +319,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#renderorder">renderOrder</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -354,7 +354,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#style">style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -364,7 +364,7 @@
 					<div class="tsd-signature tsd-kind-icon">use<wbr>Esri<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L17">layers/LayerBaseVectorEsri.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L17">layers/LayerBaseVectorEsri.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -375,7 +375,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -385,7 +385,7 @@
 					<div class="tsd-signature tsd-kind-icon">where<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorEsri.ts#L15">layers/LayerBaseVectorEsri.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorEsri.ts#L15">layers/LayerBaseVectorEsri.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -396,7 +396,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layerbasevectorgeojsonoptions.html b/doc/interfaces/layerbasevectorgeojsonoptions.html
index 82bfa8e4073cda9531b9be64522723a78689c993..bc9b9b56ee2ffb2af47c2bf8078f11f051438c98 100644
--- a/doc/interfaces/layerbasevectorgeojsonoptions.html
+++ b/doc/interfaces/layerbasevectorgeojsonoptions.html
@@ -128,7 +128,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#autoload">autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -139,7 +139,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -150,7 +150,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -161,7 +161,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -172,7 +172,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -183,7 +183,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -194,7 +194,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -205,7 +205,7 @@
 					<aside class="tsd-sources">
 						<p>Overrides <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmoveobj">mapMoveObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -216,7 +216,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -227,7 +227,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -238,7 +238,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -249,7 +249,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemand">onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -260,7 +260,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemanddelay">onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -271,7 +271,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -282,7 +282,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -293,7 +293,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#renderorder">renderOrder</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -328,7 +328,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#style">style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -338,7 +338,7 @@
 					<div class="tsd-signature tsd-kind-icon">transform<span class="tsd-signature-symbol">:</span> <a href="crstransform.html" class="tsd-signature-type">crsTransform</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -349,7 +349,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -360,7 +360,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layerbasevectoroptions.html b/doc/interfaces/layerbasevectoroptions.html
index 4ab2151e39de9be6ce4e1b2a581a37ca048652e9..7926eae7e4a3ecbc6eaef12fef4be07fcf2dbdff 100644
--- a/doc/interfaces/layerbasevectoroptions.html
+++ b/doc/interfaces/layerbasevectoroptions.html
@@ -126,7 +126,7 @@
 					<div class="tsd-signature tsd-kind-icon">auto<wbr>Load<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -137,7 +137,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -148,7 +148,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -159,7 +159,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -170,7 +170,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -181,7 +181,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -191,7 +191,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<wbr>Move<wbr>Make<wbr>Get<wbr>Params<span class="tsd-signature-symbol">:</span> <a href="makemapmoveparams.html" class="tsd-signature-type">makeMapMoveParams</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -201,7 +201,7 @@
 					<div class="tsd-signature tsd-kind-icon">map<wbr>Move<wbr>Obj<span class="tsd-signature-symbol">:</span> <a href="../classes/mapmovecls.html" class="tsd-signature-type">MapMoveCls</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L29">layers/LayerBaseVector.ts:29</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L29">layers/LayerBaseVector.ts:29</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -223,7 +223,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -234,7 +234,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<div class="tsd-signature tsd-kind-icon">on<wbr>Demand<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -254,7 +254,7 @@
 					<div class="tsd-signature tsd-kind-icon">on<wbr>Demand<wbr>Delay<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -265,7 +265,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -276,7 +276,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -286,7 +286,7 @@
 					<div class="tsd-signature tsd-kind-icon">render<wbr>Order<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -320,7 +320,7 @@
 					<div class="tsd-signature tsd-kind-icon">style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Style</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Style</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">ol.StyleFunction</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -331,7 +331,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -342,7 +342,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layeresrimapserveroptions.html b/doc/interfaces/layeresrimapserveroptions.html
index 0ab242d36fe3ccc96d5b19914d6dab623545de65..ab5ea7c9de979319e70e793c00a398de62d97149 100644
--- a/doc/interfaces/layeresrimapserveroptions.html
+++ b/doc/interfaces/layeresrimapserveroptions.html
@@ -113,7 +113,7 @@
 					<div class="tsd-signature tsd-kind-icon">add<wbr>Popup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L15">layers/LayerEsriMapServer.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L15">layers/LayerEsriMapServer.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -124,7 +124,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -135,7 +135,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -146,7 +146,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -157,7 +157,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -168,7 +168,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -179,7 +179,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -190,7 +190,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -201,7 +201,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -223,7 +223,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<div class="tsd-signature tsd-kind-icon">show<wbr>Layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriMapServer.ts#L16">layers/LayerEsriMapServer.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriMapServer.ts#L16">layers/LayerEsriMapServer.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -255,7 +255,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layeresritileoptions.html b/doc/interfaces/layeresritileoptions.html
index 831e6bfbff5cec463e7a6b8936a09c5438138b3c..bcb0e25bfb073a8edca4c009182c236274d794c2 100644
--- a/doc/interfaces/layeresritileoptions.html
+++ b/doc/interfaces/layeresritileoptions.html
@@ -113,7 +113,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -124,7 +124,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -135,7 +135,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -146,7 +146,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -157,7 +157,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -168,7 +168,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -179,7 +179,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -190,7 +190,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -201,7 +201,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -212,7 +212,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<div class="tsd-signature tsd-kind-icon">use<wbr>Esri<wbr>Style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerEsriTile.ts#L13">layers/LayerEsriTile.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerEsriTile.ts#L13">layers/LayerEsriTile.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layerrealearthtileoptions.html b/doc/interfaces/layerrealearthtileoptions.html
index 4354df6105768016b0c3159ad00a61a0160013eb..a6f7abe008eafb2ee413963bb123df20ca03309c 100644
--- a/doc/interfaces/layerrealearthtileoptions.html
+++ b/doc/interfaces/layerrealearthtileoptions.html
@@ -114,7 +114,7 @@
 					<div class="tsd-signature tsd-kind-icon">animate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L14">layers/LayerRealEarthTile.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L14">layers/LayerRealEarthTile.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -125,7 +125,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -136,7 +136,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -147,7 +147,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -158,7 +158,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -169,7 +169,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -180,7 +180,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -191,7 +191,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -202,7 +202,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -213,7 +213,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -224,7 +224,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -234,7 +234,7 @@
 					<div class="tsd-signature tsd-kind-icon">products<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L13">layers/LayerRealEarthTile.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L13">layers/LayerRealEarthTile.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<div class="tsd-signature tsd-kind-icon">time<wbr>Load<wbr>Callback<span class="tsd-signature-symbol">:</span> <a href="timesloadedcallback.html" class="tsd-signature-type">timesLoadedCallback</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthTile.ts#L15">layers/LayerRealEarthTile.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthTile.ts#L15">layers/LayerRealEarthTile.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -255,7 +255,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -266,7 +266,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/layervectorrealearthoptions.html b/doc/interfaces/layervectorrealearthoptions.html
index 59bae584fcc2415f224d64c5169e42168658cce5..05b31ae2aa4cff53cd098e523b05866b0348b1be 100644
--- a/doc/interfaces/layervectorrealearthoptions.html
+++ b/doc/interfaces/layervectorrealearthoptions.html
@@ -122,7 +122,7 @@
 					<div class="tsd-signature tsd-kind-icon">animate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L14">layers/LayerRealEarthVector.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L14">layers/LayerRealEarthVector.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -133,7 +133,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#autoload">autoLoad</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L24">layers/LayerBaseVector.ts:24</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -144,7 +144,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#id">id</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L11">layers/LayerBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -155,7 +155,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcheckbox">legendCheckbox</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L21">layers/LayerBase.ts:21</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -166,7 +166,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcollapse">legendCollapse</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L20">layers/LayerBase.ts:20</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -177,7 +177,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#legendcontent">legendContent</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L22">layers/LayerBase.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -188,7 +188,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#loadcallback">loadCallback</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L19">layers/LayerBase.ts:19</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -199,7 +199,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmovemakegetparams">mapMoveMakeGetParams</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L28">layers/LayerBaseVector.ts:28</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -211,7 +211,7 @@
 						<p>Inherited from <a href="layerbasevectorgeojsonoptions.html">LayerBaseVectorGeoJsonOptions</a>.<a href="layerbasevectorgeojsonoptions.html#mapmoveobj">mapMoveObj</a></p>
 						<p>Overrides <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#mapmoveobj">mapMoveObj</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L23">layers/LayerBaseVectorGeoJson.ts:23</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -222,7 +222,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#maxzoom">maxZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L16">layers/LayerBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -233,7 +233,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#minzoom">minZoom</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L15">layers/LayerBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -244,7 +244,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#name">name</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L12">layers/LayerBase.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -255,7 +255,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemand">onDemand</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L26">layers/LayerBaseVector.ts:26</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -266,7 +266,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#ondemanddelay">onDemandDelay</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L27">layers/LayerBaseVector.ts:27</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -277,7 +277,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#opacity">opacity</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L13">layers/LayerBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -288,7 +288,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#params">params</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L17">layers/LayerBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -298,7 +298,7 @@
 					<div class="tsd-signature tsd-kind-icon">products<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L13">layers/LayerRealEarthVector.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L13">layers/LayerRealEarthVector.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -309,7 +309,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#renderorder">renderOrder</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L30">layers/LayerBaseVector.ts:30</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -344,7 +344,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectoroptions.html">LayerBaseVectorOptions</a>.<a href="layerbasevectoroptions.html#style">style</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L25">layers/LayerBaseVector.ts:25</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -354,7 +354,7 @@
 					<div class="tsd-signature tsd-kind-icon">time<wbr>Load<wbr>Callback<span class="tsd-signature-symbol">:</span> <a href="timesloadedcallback.html" class="tsd-signature-type">timesLoadedCallback</a></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerRealEarthVector.ts#L15">layers/LayerRealEarthVector.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerRealEarthVector.ts#L15">layers/LayerRealEarthVector.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -365,7 +365,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbasevectorgeojsonoptions.html">LayerBaseVectorGeoJsonOptions</a>.<a href="layerbasevectorgeojsonoptions.html#transform">transform</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVectorGeoJson.ts#L22">layers/LayerBaseVectorGeoJson.ts:22</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -376,7 +376,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#visible">visible</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L14">layers/LayerBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -387,7 +387,7 @@
 					<aside class="tsd-sources">
 						<p>Inherited from <a href="layerbaseoptions.html">LayerBaseOptions</a>.<a href="layerbaseoptions.html#zindex">zIndex</a></p>
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBase.ts#L18">layers/LayerBase.ts:18</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/makemapmoveparams.html b/doc/interfaces/makemapmoveparams.html
index 4c3977bf1dced2a623feab531f9a44d659a57b34..2ff8218710d1bd71bfb480f69fbc4d5f175f8777 100644
--- a/doc/interfaces/makemapmoveparams.html
+++ b/doc/interfaces/makemapmoveparams.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/layers/LayerBaseVector.ts#L10">layers/LayerBaseVector.ts:10</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/layers/LayerBaseVector.ts#L10">layers/LayerBaseVector.ts:10</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/mapevent.html b/doc/interfaces/mapevent.html
index 6546abb2e6736830cd19c550a8f9d297641f624d..dd3428447cc173ade184023a772677c4547543b0 100644
--- a/doc/interfaces/mapevent.html
+++ b/doc/interfaces/mapevent.html
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">coordinate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ol.Coordinate</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L33">olHelpers/mapPopupCls.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L33">olHelpers/mapPopupCls.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -108,7 +108,7 @@
 					<div class="tsd-signature tsd-kind-icon">dragging<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">any</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L35">olHelpers/mapPopupCls.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L35">olHelpers/mapPopupCls.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -118,7 +118,7 @@
 					<div class="tsd-signature tsd-kind-icon">original<wbr>Event<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Event</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L36">olHelpers/mapPopupCls.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L36">olHelpers/mapPopupCls.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -128,7 +128,7 @@
 					<div class="tsd-signature tsd-kind-icon">pixel<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ol.Pixel</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L34">olHelpers/mapPopupCls.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L34">olHelpers/mapPopupCls.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/mapmovecallbackfunction.html b/doc/interfaces/mapmovecallbackfunction.html
index 02eca39426e63ed24678a90b0b137e84b740bc1a..5fd0782dce1250b4809a0494fb6492e2a2b10652 100644
--- a/doc/interfaces/mapmovecallbackfunction.html
+++ b/doc/interfaces/mapmovecallbackfunction.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapMoveCls.ts#L18">olHelpers/mapMoveCls.ts:18</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapMoveCls.ts#L18">olHelpers/mapMoveCls.ts:18</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/mediarangeconfig.html b/doc/interfaces/mediarangeconfig.html
index 99b0f5a367ef64a84e5964afda7c193124e89dd9..4a3de78a07683b37fb5388056a913409a7025cef 100644
--- a/doc/interfaces/mediarangeconfig.html
+++ b/doc/interfaces/mediarangeconfig.html
@@ -100,7 +100,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L32">domUtil/media-control.ts:32</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L32">domUtil/media-control.ts:32</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -110,7 +110,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L31">domUtil/media-control.ts:31</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L31">domUtil/media-control.ts:31</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -120,7 +120,7 @@
 					<div class="tsd-signature tsd-kind-icon">play<wbr>Interval<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L35">domUtil/media-control.ts:35</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L35">domUtil/media-control.ts:35</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -130,7 +130,7 @@
 					<div class="tsd-signature tsd-kind-icon">show<wbr>AsDate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L36">domUtil/media-control.ts:36</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L36">domUtil/media-control.ts:36</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -140,7 +140,7 @@
 					<div class="tsd-signature tsd-kind-icon">step<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L34">domUtil/media-control.ts:34</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L34">domUtil/media-control.ts:34</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -150,7 +150,7 @@
 					<div class="tsd-signature tsd-kind-icon">val<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/media-control.ts#L33">domUtil/media-control.ts:33</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/media-control.ts#L33">domUtil/media-control.ts:33</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/popupcallback.html b/doc/interfaces/popupcallback.html
index fed08fb8d4a0ce29f89bbed6a4c63e06911b1c58..0aa724862a765ff1b449515f1c8555c051a0ed7b 100644
--- a/doc/interfaces/popupcallback.html
+++ b/doc/interfaces/popupcallback.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L23">olHelpers/mapPopupCls.ts:23</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L23">olHelpers/mapPopupCls.ts:23</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/popupchangedfunction.html b/doc/interfaces/popupchangedfunction.html
index ce20457efb9327db6ed188e79336abc07de8b97a..f0e864574bd4f3c6d8514b2c65b99ef34a1b5a2a 100644
--- a/doc/interfaces/popupchangedfunction.html
+++ b/doc/interfaces/popupchangedfunction.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/mapPopupCls.ts#L16">olHelpers/mapPopupCls.ts:16</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/mapPopupCls.ts#L16">olHelpers/mapPopupCls.ts:16</a></li>
 							</ul>
 						</aside>
 						<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/quickmapoptions.html b/doc/interfaces/quickmapoptions.html
index 716c23a4c7a3b1103b44385547226b6b0888425f..e1b97abea07f14a3b9cb897196a40c0274a57c8d 100644
--- a/doc/interfaces/quickmapoptions.html
+++ b/doc/interfaces/quickmapoptions.html
@@ -101,7 +101,7 @@
 					<div class="tsd-signature tsd-kind-icon">base<wbr>Switcher<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L16">olHelpers/quickMapBase.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L16">olHelpers/quickMapBase.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -111,7 +111,7 @@
 					<div class="tsd-signature tsd-kind-icon">center<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L12">olHelpers/quickMapBase.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L12">olHelpers/quickMapBase.ts:12</a></li>
 						</ul>
 					</aside>
 					<div class="tsd-type-declaration">
@@ -132,7 +132,7 @@
 					<div class="tsd-signature tsd-kind-icon">div<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L11">olHelpers/quickMapBase.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L11">olHelpers/quickMapBase.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -142,7 +142,7 @@
 					<div class="tsd-signature tsd-kind-icon">full<wbr>Screen<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L17">olHelpers/quickMapBase.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L17">olHelpers/quickMapBase.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -152,7 +152,7 @@
 					<div class="tsd-signature tsd-kind-icon">max<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L15">olHelpers/quickMapBase.ts:15</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L15">olHelpers/quickMapBase.ts:15</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -162,7 +162,7 @@
 					<div class="tsd-signature tsd-kind-icon">min<wbr>Zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L14">olHelpers/quickMapBase.ts:14</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L14">olHelpers/quickMapBase.ts:14</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -172,7 +172,7 @@
 					<div class="tsd-signature tsd-kind-icon">zoom<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/olHelpers/quickMapBase.ts#L13">olHelpers/quickMapBase.ts:13</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/olHelpers/quickMapBase.ts#L13">olHelpers/quickMapBase.ts:13</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/rangechangedcallback.html b/doc/interfaces/rangechangedcallback.html
index f4874ccbe6d5f164e8c1a1e3f45bcd408b5422ed..e0212ef21bf50fe011d7e7b7b116d8e16f27f386 100644
--- a/doc/interfaces/rangechangedcallback.html
+++ b/doc/interfaces/rangechangedcallback.html
@@ -90,7 +90,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/range-change.ts#L25">domUtil/range-change.ts:25</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/range-change.ts#L25">domUtil/range-change.ts:25</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/selectchangecallback.html b/doc/interfaces/selectchangecallback.html
index 226e038ea1a399d859774cb449f5c7899e9066c1..b18edc71da4ac22ba8032a840d928b142db14033 100644
--- a/doc/interfaces/selectchangecallback.html
+++ b/doc/interfaces/selectchangecallback.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/domUtil/SelectBoxBase.ts#L9">domUtil/SelectBoxBase.ts:9</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/domUtil/SelectBoxBase.ts#L9">domUtil/SelectBoxBase.ts:9</a></li>
 							</ul>
 						</aside>
 						<div class="tsd-comment tsd-typography">
diff --git a/doc/interfaces/timesloadedcallback.html b/doc/interfaces/timesloadedcallback.html
index a7b2a654fd555a33104161fcf1065f76a28837ce..21a8c9abaa471c2672fa5eb8301df6033499081c 100644
--- a/doc/interfaces/timesloadedcallback.html
+++ b/doc/interfaces/timesloadedcallback.html
@@ -83,7 +83,7 @@
 					<li class="tsd-description">
 						<aside class="tsd-sources">
 							<ul>
-								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/mixin/RealEarthAnimate.ts#L23">mixin/RealEarthAnimate.ts:23</a></li>
+								<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/mixin/RealEarthAnimate.ts#L23">mixin/RealEarthAnimate.ts:23</a></li>
 							</ul>
 						</aside>
 						<h4 class="tsd-parameters-title">Parameters</h4>
diff --git a/doc/interfaces/tippresetconfig.html b/doc/interfaces/tippresetconfig.html
index c3a6075ac508927e5dae5ebe715e20e59fafeb82..147389209620f084981a51f84853283e287ac6aa 100644
--- a/doc/interfaces/tippresetconfig.html
+++ b/doc/interfaces/tippresetconfig.html
@@ -102,7 +102,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L16">collections/Sliders.ts:16</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L16">collections/Sliders.ts:16</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -112,7 +112,7 @@
 					<div class="tsd-signature tsd-kind-icon">presets<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L17">collections/Sliders.ts:17</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L17">collections/Sliders.ts:17</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/interfaces/tipsliderconfig.html b/doc/interfaces/tipsliderconfig.html
index 99ed20d83a6d4b4553d2d1733391bd3313542fea..a1df57120972ff067476486efdd3e669902104f7 100644
--- a/doc/interfaces/tipsliderconfig.html
+++ b/doc/interfaces/tipsliderconfig.html
@@ -96,7 +96,7 @@
 					<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L11">collections/Sliders.ts:11</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L11">collections/Sliders.ts:11</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -106,7 +106,7 @@
 					<div class="tsd-signature tsd-kind-icon">year<wbr>Options<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/collections/Sliders.ts#L12">collections/Sliders.ts:12</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/collections/Sliders.ts#L12">collections/Sliders.ts:12</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/doc/modules/checkdefined.html b/doc/modules/checkdefined.html
index bf9bf93c7eb0a07c59b72a62544d5b62d754550c..abfe0f792fb888e72c29eaffd801fc645352c91b 100644
--- a/doc/modules/checkdefined.html
+++ b/doc/modules/checkdefined.html
@@ -88,7 +88,7 @@
 					<div class="tsd-signature tsd-kind-icon">defined<wbr>And<wbr>Not<wbr>Null<span class="tsd-signature-symbol">:</span> <a href="../globals.html#definedandnotnull" class="tsd-signature-type">definedAndNotNull</a><span class="tsd-signature-symbol"> =&nbsp;checkDefinedf.definedAndNotNull</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/_index.ts#L10">util/_index.ts:10</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/_index.ts#L10">util/_index.ts:10</a></li>
 						</ul>
 					</aside>
 				</section>
@@ -98,7 +98,7 @@
 					<div class="tsd-signature tsd-kind-icon">undefined<wbr>OrNull<span class="tsd-signature-symbol">:</span> <a href="../globals.html#undefinedornull" class="tsd-signature-type">undefinedOrNull</a><span class="tsd-signature-symbol"> =&nbsp;checkDefinedf.undefinedOrNull</span></div>
 					<aside class="tsd-sources">
 						<ul>
-							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/2d75bbe/src/util/_index.ts#L9">util/_index.ts:9</a></li>
+							<li>Defined in <a href="https://github.com/glennvorhes/webmapsjs/blob/f43df93/src/util/_index.ts#L9">util/_index.ts:9</a></li>
 						</ul>
 					</aside>
 				</section>
diff --git a/src/reactCompoents/DatePick.tsx b/src/reactComponents/DatePick.tsx
similarity index 100%
rename from src/reactCompoents/DatePick.tsx
rename to src/reactComponents/DatePick.tsx
diff --git a/src/reactCompoents/DateRange.tsx b/src/reactComponents/DateRange.tsx
similarity index 100%
rename from src/reactCompoents/DateRange.tsx
rename to src/reactComponents/DateRange.tsx
diff --git a/src/reactCompoents/Radio.tsx b/src/reactComponents/Radio.tsx
similarity index 100%
rename from src/reactCompoents/Radio.tsx
rename to src/reactComponents/Radio.tsx
diff --git a/src/reactCompoents/SelectArea.tsx b/src/reactComponents/SelectArea.tsx
similarity index 100%
rename from src/reactCompoents/SelectArea.tsx
rename to src/reactComponents/SelectArea.tsx
diff --git a/src/reactCompoents/Slider.tsx b/src/reactComponents/Slider.tsx
similarity index 100%
rename from src/reactCompoents/Slider.tsx
rename to src/reactComponents/Slider.tsx
diff --git a/src/reactCompoents/helpers/dateFormat.ts b/src/reactComponents/helpers/dateFormat.ts
similarity index 100%
rename from src/reactCompoents/helpers/dateFormat.ts
rename to src/reactComponents/helpers/dateFormat.ts
diff --git a/src/reactCompoents/helpers/get_map.ts b/src/reactComponents/helpers/get_map.ts
similarity index 100%
rename from src/reactCompoents/helpers/get_map.ts
rename to src/reactComponents/helpers/get_map.ts
diff --git a/src/reactCompoents/reactAndRedux.ts b/src/reactComponents/reactAndRedux.ts
similarity index 100%
rename from src/reactCompoents/reactAndRedux.ts
rename to src/reactComponents/reactAndRedux.ts