Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit 4fa39b5

Browse files
committed
Update docs
1 parent 93c1366 commit 4fa39b5

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ Examples can be found in the documentation under the "[Manual]" section.
3636
## License
3737
See the [LICENSE] file for license information. This project is licensed under a [BSD-3-Clause] license.
3838

39-
[download library]: https://mapcreatoreu.github.io/api-wrapper/dist/bundle.js
40-
[minified]: https://mapcreatoreu.github.io/api-wrapper/dist/bundle.min.js
39+
[download library]: https://docs.maps4news.com/wrapper/dist/bundle.js
40+
[minified]: https://docs.maps4news.com/wrapper/dist/bundle.min.js
4141

42-
[installation]: https://mapcreatoreu.github.io/api-wrapper/manual/installation/installation.html
43-
[building]: https://mapcreatoreu.github.io/api-wrapper/manual/installation/building.html
42+
[installation]: https://docs.maps4news.com/wrapper/manual/installation/installation.html
43+
[building]: https://docs.maps4news.com/wrapper/manual/installation/building.html
4444
[api documentation]: https://api.beta.maps4news.com/docs/
45-
[docs]: https://mapcreatoreu.github.io/api-wrapper/
46-
[docs-auth]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html
47-
[manual]: https://mapcreatoreu.github.io/api-wrapper/manual/index.html
45+
[docs]: https://docs.maps4news.com/wrapper/
46+
[docs-auth]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html
47+
[manual]: https://docs.maps4news.com/wrapper/manual/index.html
4848
[GitHub repo]: https://github.com/MapCreatorEU/api-wrapper
4949
[esdoc]: https://esdoc.org
5050
[example-basics]: examples/basics.js
@@ -53,8 +53,8 @@ See the [LICENSE] file for license information. This project is licensed under a
5353
[LICENSE]: https://github.com/MapCreatorEU/api-wrapper/blob/master/LICENSE
5454
[BSD-3-Clause]: https://tldrlegal.com/license/bsd-3-clause-license-(revised)
5555

56-
[ImplicitFlow]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html#implicit-flow
57-
[ImplicitPopupFlow]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html#implicit-flow-pop-up
58-
[PasswordFlow]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html#password-flow
59-
[PasswordFlow-web]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html#password-flow-dangerous-
60-
[DummyFlow]: https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html#dummy-flow
56+
[ImplicitFlow]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html#implicit-flow
57+
[ImplicitPopupFlow]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html#implicit-flow-pop-up
58+
[PasswordFlow]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html#password-flow
59+
[PasswordFlow-web]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html#password-flow-dangerous-
60+
[DummyFlow]: https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html#dummy-flow

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"keywords": [
1010
"mapping"
1111
],
12-
"homepage": "https://mapcreatoreu.github.io/api-wrapper",
12+
"homepage": "https://docs.maps4news.com/wrapper",
1313
"ignore": [
1414
"**/.*",
1515
"node_modules",

manual/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ api.layers.search(query).then(console.dir);
136136
The `search` method is an extension of `list`. This means that `.search({})` is the same as
137137
`list()`. More information about search query formatting can be found in the [api documentation].
138138

139-
[api documepntation]: https://api.beta.maps4news.com/docs/
139+
[api documepntation]: https://docs.maps4news.com/

manual/js/sandbox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function easyAuth() {
99
var m4n = window.maps4news;
1010

1111
var clientId = 3;
12-
var docsUrl = 'https://mapcreatoreu.github.io/api-wrapper/';
12+
var docsUrl = 'https://docs.maps4news.com/wrapper/';
1313
var auth = new m4n.ImplicitFlowPopup(clientId, docsUrl);
1414
var api = new m4n.Maps4News(auth);
1515

@@ -20,7 +20,7 @@ function easyAuth() {
2020

2121
console.log('You can play around with the api in here, the library is bound to window.maps4news. Authentication ');
2222
console.log('can easily be done by running the command easyAuth(). See the docs for more information here: ');
23-
console.log('https://mapcreatoreu.github.io/api-wrapper/manual/example/examples.authentication.html');
23+
console.log('https://docs.maps4news.com/wrapper/manual/example/examples.authentication.html');
2424
console.log('Example: easyAuth().then(api => window.api = api);');
2525
console.log('window.maps4news =', window.maps4news);
2626

src/resources/JobRevision.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default class JobRevision extends CrudBase {
141141

142142
/**
143143
* Build the revision
144-
* @param {String} callbackUrl - Optional callback url for when the job completes
144+
* @param {String} callback - Optional callback url for when the job completes
145145
* @param {String} [deleted=RequestParameters.deleted] - Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all
146146
* @throws {ApiError}
147147
*/

0 commit comments

Comments
 (0)