@mapcreator/api 2.6.2 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/dist/bundle.browser.js +471 -376
- package/dist/bundle.browser.js.map +1 -1
- package/dist/bundle.browser.min.js +1 -1
- package/dist/bundle.browser.min.js.LICENSE.txt +2 -2
- package/dist/bundle.browser.min.js.map +1 -1
- package/dist/bundle.js +452 -357
- package/dist/bundle.js.map +1 -1
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.LICENSE.txt +1 -1
- package/dist/bundle.min.js.map +1 -1
- package/manual/js/sandbox.js +1 -1
- package/package.json +1 -1
- package/src/Mapcreator.js +10 -0
- package/src/resources/LayerGroup.js +57 -0
- package/src/resources/Organisation.js +9 -0
package/README.md
CHANGED
|
@@ -39,11 +39,11 @@ See the [LICENSE] file for license information. This project is licensed under a
|
|
|
39
39
|
[download library]: https://docs.mapcreator.io/wrapper/dist/bundle.js
|
|
40
40
|
[minified]: https://docs.mapcreator.io/wrapper/dist/bundle.min.js
|
|
41
41
|
|
|
42
|
-
[installation]: https://docs.mapcreator.io/wrapper/manual/installation
|
|
43
|
-
[building]: https://docs.mapcreator.io/wrapper/manual/
|
|
42
|
+
[installation]: https://docs.mapcreator.io/wrapper/manual/installation.html
|
|
43
|
+
[building]: https://docs.mapcreator.io/wrapper/manual/building.html
|
|
44
44
|
[api documentation]: https://api.beta.mapcreator.io/docs/
|
|
45
|
-
[docs]: https://docs.mapcreator.io/wrapper/
|
|
46
|
-
[docs-auth]: https://docs.mapcreator.io/wrapper/manual/
|
|
45
|
+
[docs]: https://docs.mapcreator.io/wrapper/index.html
|
|
46
|
+
[docs-auth]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html
|
|
47
47
|
[manual]: https://docs.mapcreator.io/wrapper/manual/index.html
|
|
48
48
|
[GitLab repo]: https://gitlab.com/mapcreator/api-wrapper
|
|
49
49
|
[esdoc]: https://esdoc.org
|
|
@@ -53,8 +53,8 @@ See the [LICENSE] file for license information. This project is licensed under a
|
|
|
53
53
|
[LICENSE]: https://gitlab.com/mapcreator/api-wrapper/-/blob/master/LICENSE
|
|
54
54
|
[BSD-3-Clause]: https://tldrlegal.com/license/bsd-3-clause-license-(revised)
|
|
55
55
|
|
|
56
|
-
[ImplicitFlow]: https://docs.mapcreator.io/wrapper/manual/
|
|
57
|
-
[ImplicitPopupFlow]: https://docs.mapcreator.io/wrapper/manual/
|
|
58
|
-
[PasswordFlow]: https://docs.mapcreator.io/wrapper/manual/
|
|
59
|
-
[PasswordFlow-web]: https://docs.mapcreator.io/wrapper/manual/
|
|
60
|
-
[DummyFlow]: https://docs.mapcreator.io/wrapper/manual/
|
|
56
|
+
[ImplicitFlow]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html#implicit-flow
|
|
57
|
+
[ImplicitPopupFlow]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html#implicit-flow-pop-up
|
|
58
|
+
[PasswordFlow]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html#password-flow
|
|
59
|
+
[PasswordFlow-web]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html#password-flow-dangerous-
|
|
60
|
+
[DummyFlow]: https://docs.mapcreator.io/wrapper/manual/examples.authentication.html#dummy-flow
|