etincidunt 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +29 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +172 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +14 -0
- package/demos/batch-geocoder-node/batch-geocode.js +112 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +109 -0
- package/demos/batch-geocoder-node/package.json +37 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +388 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +163 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/vue/.babelrc +6 -0
- package/demos/vue/.env.example +8 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/index.html +21 -0
- package/demos/vue/package-lock.json +7236 -0
- package/demos/vue/package.json +39 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +302 -0
- package/demos/vue/src/components/Authenticate.vue +68 -0
- package/demos/vue/src/components/Loader.vue +216 -0
- package/demos/vue/src/main.js +75 -0
- package/demos/vue/webpack.config.js +84 -0
- package/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +214 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +9 -0
- package/docs/src/guides/browserify.md +9 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +30 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +113 -0
- package/docs/src/js/index.js +1 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +91 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +91 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +829 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +21 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +55 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +36 -0
- package/packages/arcgis-rest-auth/src/index.ts +5 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +121 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +883 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +76 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +36 -0
- package/packages/arcgis-rest-auth/test/utils.ts +11 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +51 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1225 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +82 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +77 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +8 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +174 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +179 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +172 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +220 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +73 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +81 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +4 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/geocoder.test.ts +510 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +588 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/groups.ts +272 -0
- package/packages/arcgis-rest-groups/src/index.ts +1 -0
- package/packages/arcgis-rest-groups/test/groups.test.ts +280 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +137 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/index.ts +1 -0
- package/packages/arcgis-rest-items/src/items.ts +498 -0
- package/packages/arcgis-rest-items/test/items.test.ts +1153 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +30 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +28 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +60 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +10 -0
- package/packages/arcgis-rest-request/src/request.ts +259 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +73 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +59 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +10 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +109 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +38 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +38 -0
- package/packages/arcgis-rest-request/test/request.test.ts +296 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +167 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +40 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +101 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +112 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +34 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +94 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +190 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +55 -0
- package/packages/arcgis-rest-sharing/src/access.ts +91 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +212 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +92 -0
- package/packages/arcgis-rest-sharing/src/index.ts +2 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +153 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +436 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +15 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/index.ts +1 -0
- package/packages/arcgis-rest-users/src/users.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/responses.ts +170 -0
- package/packages/arcgis-rest-users/test/users.test.ts +97 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/FormData.d.ts +1 -0
- package/support/changelog.js +388 -0
- package/support/commit-template.txt +19 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +40 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +14 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,182 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"async": {
|
6
|
+
"version": "1.5.2",
|
7
|
+
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
8
|
+
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
|
9
|
+
},
|
10
|
+
"colors": {
|
11
|
+
"version": "1.0.3",
|
12
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
13
|
+
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
|
14
|
+
},
|
15
|
+
"corser": {
|
16
|
+
"version": "2.0.1",
|
17
|
+
"resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
|
18
|
+
"integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c="
|
19
|
+
},
|
20
|
+
"debug": {
|
21
|
+
"version": "3.1.0",
|
22
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
23
|
+
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
24
|
+
"requires": {
|
25
|
+
"ms": "2.0.0"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"ecstatic": {
|
29
|
+
"version": "3.2.0",
|
30
|
+
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.0.tgz",
|
31
|
+
"integrity": "sha512-Goilx/2cfU9vvfQjgtNgc2VmJAD8CasQ6rZDqCd2u4Hsyd/qFET6nBf60jiHodevR3nl3IGzNKtrzPXWP88utQ==",
|
32
|
+
"requires": {
|
33
|
+
"he": "^1.1.1",
|
34
|
+
"mime": "^1.4.1",
|
35
|
+
"minimist": "^1.1.0",
|
36
|
+
"url-join": "^2.0.2"
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"eventemitter3": {
|
40
|
+
"version": "3.1.0",
|
41
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz",
|
42
|
+
"integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA=="
|
43
|
+
},
|
44
|
+
"follow-redirects": {
|
45
|
+
"version": "1.4.1",
|
46
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.4.1.tgz",
|
47
|
+
"integrity": "sha512-uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg==",
|
48
|
+
"requires": {
|
49
|
+
"debug": "^3.1.0"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"he": {
|
53
|
+
"version": "1.1.1",
|
54
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
|
55
|
+
"integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
|
56
|
+
},
|
57
|
+
"http-proxy": {
|
58
|
+
"version": "1.17.0",
|
59
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz",
|
60
|
+
"integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==",
|
61
|
+
"requires": {
|
62
|
+
"eventemitter3": "^3.0.0",
|
63
|
+
"follow-redirects": "^1.0.0",
|
64
|
+
"requires-port": "^1.0.0"
|
65
|
+
}
|
66
|
+
},
|
67
|
+
"http-server": {
|
68
|
+
"version": "0.11.1",
|
69
|
+
"resolved": "https://registry.npmjs.org/http-server/-/http-server-0.11.1.tgz",
|
70
|
+
"integrity": "sha512-6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w==",
|
71
|
+
"requires": {
|
72
|
+
"colors": "1.0.3",
|
73
|
+
"corser": "~2.0.0",
|
74
|
+
"ecstatic": "^3.0.0",
|
75
|
+
"http-proxy": "^1.8.1",
|
76
|
+
"opener": "~1.4.0",
|
77
|
+
"optimist": "0.6.x",
|
78
|
+
"portfinder": "^1.0.13",
|
79
|
+
"union": "~0.4.3"
|
80
|
+
}
|
81
|
+
},
|
82
|
+
"mime": {
|
83
|
+
"version": "1.6.0",
|
84
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
85
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
|
86
|
+
},
|
87
|
+
"minimist": {
|
88
|
+
"version": "1.2.0",
|
89
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
90
|
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
91
|
+
},
|
92
|
+
"mkdirp": {
|
93
|
+
"version": "0.5.1",
|
94
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
95
|
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
96
|
+
"requires": {
|
97
|
+
"minimist": "0.0.8"
|
98
|
+
},
|
99
|
+
"dependencies": {
|
100
|
+
"minimist": {
|
101
|
+
"version": "0.0.8",
|
102
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
103
|
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
104
|
+
}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
"ms": {
|
108
|
+
"version": "2.0.0",
|
109
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
110
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
111
|
+
},
|
112
|
+
"opener": {
|
113
|
+
"version": "1.4.3",
|
114
|
+
"resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
|
115
|
+
"integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg="
|
116
|
+
},
|
117
|
+
"optimist": {
|
118
|
+
"version": "0.6.1",
|
119
|
+
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
|
120
|
+
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
|
121
|
+
"requires": {
|
122
|
+
"minimist": "~0.0.1",
|
123
|
+
"wordwrap": "~0.0.2"
|
124
|
+
},
|
125
|
+
"dependencies": {
|
126
|
+
"minimist": {
|
127
|
+
"version": "0.0.10",
|
128
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
129
|
+
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
|
130
|
+
}
|
131
|
+
}
|
132
|
+
},
|
133
|
+
"portfinder": {
|
134
|
+
"version": "1.0.13",
|
135
|
+
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
|
136
|
+
"integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
|
137
|
+
"requires": {
|
138
|
+
"async": "^1.5.2",
|
139
|
+
"debug": "^2.2.0",
|
140
|
+
"mkdirp": "0.5.x"
|
141
|
+
},
|
142
|
+
"dependencies": {
|
143
|
+
"debug": {
|
144
|
+
"version": "2.6.9",
|
145
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
146
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
147
|
+
"requires": {
|
148
|
+
"ms": "2.0.0"
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|
152
|
+
},
|
153
|
+
"qs": {
|
154
|
+
"version": "2.3.3",
|
155
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
|
156
|
+
"integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ="
|
157
|
+
},
|
158
|
+
"requires-port": {
|
159
|
+
"version": "1.0.0",
|
160
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
161
|
+
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
|
162
|
+
},
|
163
|
+
"union": {
|
164
|
+
"version": "0.4.6",
|
165
|
+
"resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
|
166
|
+
"integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
|
167
|
+
"requires": {
|
168
|
+
"qs": "~2.3.3"
|
169
|
+
}
|
170
|
+
},
|
171
|
+
"url-join": {
|
172
|
+
"version": "2.0.5",
|
173
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz",
|
174
|
+
"integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg="
|
175
|
+
},
|
176
|
+
"wordwrap": {
|
177
|
+
"version": "0.0.3",
|
178
|
+
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
179
|
+
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
|
180
|
+
}
|
181
|
+
}
|
182
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "feature-service-browser",
|
3
|
+
"version": "1.6.0",
|
4
|
+
"private": true,
|
5
|
+
"description": "Vanilla JavaScript demo of @esri/arcgis-rest-feature-service",
|
6
|
+
"author": "",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"dependencies": {
|
9
|
+
"@esri/arcgis-rest-feature-service": "^1.6.0",
|
10
|
+
"@esri/arcgis-rest-request": "^1.6.0"
|
11
|
+
},
|
12
|
+
"devDependencies": {
|
13
|
+
"http-server": "*"
|
14
|
+
},
|
15
|
+
"scripts": {
|
16
|
+
"start": "http-server ."
|
17
|
+
}
|
18
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Running this demo
|
2
|
+
|
3
|
+
1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
|
4
|
+
2. ~~Register a new app on https://developers.arcgis.com~~
|
5
|
+
3. ~~Add a redirect URL of `http://localhost:8080/post-sign-in.html` to your app.~~
|
6
|
+
4. ~~Copy the `config.js.template` file, rename it to `config.js`~~
|
7
|
+
5. ~~Copy your apps client id into your new `config.js` file.~~
|
8
|
+
6. `npm start`
|
9
|
+
7. Visit http://localhost:8080 ~~and click "Sign In" to start the OAuth 2.0 process.~~
|
10
|
+
8. Start clicking buttons to send off ~~authenticated~~ geocoding requests.
|
@@ -0,0 +1 @@
|
|
1
|
+
var ClientId = "CLIENT_ID";
|
@@ -0,0 +1,131 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
|
8
|
+
<div class="container-fluid">
|
9
|
+
<div class="jumbotron" >
|
10
|
+
<h1>get to geocodin!</h1>
|
11
|
+
<p>type things, click buttons and snoop in the <a href='https://developer.chrome.com/devtools'>developer console</a>.</p>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div class="col-md-4">
|
15
|
+
|
16
|
+
</div>
|
17
|
+
<div class="col-md-4">
|
18
|
+
<p>
|
19
|
+
<button class="btn btn-default" id="metadata" role="button">get service info</button>
|
20
|
+
</p>
|
21
|
+
|
22
|
+
<p>
|
23
|
+
<input id="geocodeInput" value="123 main st"></input>
|
24
|
+
<button class="btn btn-default" id="geocode" role="button">geocode an address</button>
|
25
|
+
<p>
|
26
|
+
<input id="suggestInput" value="World Tr"></input>
|
27
|
+
<button class="btn btn-default" id="suggest" role="button">get address suggestion</button>
|
28
|
+
</p>
|
29
|
+
|
30
|
+
<p>
|
31
|
+
<input id="reverseInput" value="{x:-118,y:34}"></input>
|
32
|
+
<button class="btn btn-default" id="reverse" role="button">determine address</button>
|
33
|
+
</p>
|
34
|
+
|
35
|
+
<p>
|
36
|
+
<a href="" class="btn btn-default" id="sign-in" role="button">Sign In</a><br>
|
37
|
+
</p>
|
38
|
+
|
39
|
+
<p>
|
40
|
+
<button class="btn btn-default" id="bulk" role="button">geocode many addresses</button>
|
41
|
+
</p>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
|
45
|
+
<script src="config.js"></script>
|
46
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
47
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.js"></script>
|
48
|
+
<script src="node_modules/@esri/arcgis-rest-geocoder/dist/umd/geocoder.umd.js"></script>
|
49
|
+
|
50
|
+
<script>
|
51
|
+
var auth;
|
52
|
+
|
53
|
+
// add back later for bulk geocoding
|
54
|
+
var authBtn = document.getElementById('sign-in');
|
55
|
+
|
56
|
+
authBtn.addEventListener('click', function (e) {
|
57
|
+
arcgisRest.UserSession.beginOAuth2({
|
58
|
+
clientId: ClientId,
|
59
|
+
redirectUri: "http://localhost:8080/post-sign-in.html",
|
60
|
+
popup: true,
|
61
|
+
portal: "https://www.arcgis.com/sharing/rest"
|
62
|
+
}).then((session) => {
|
63
|
+
auth = session;
|
64
|
+
console.log(session);
|
65
|
+
document.getElementById('sign-in').innerHTML = 'you are signed in';
|
66
|
+
}).catch(error => {
|
67
|
+
console.log(error);
|
68
|
+
});
|
69
|
+
e.preventDefault();
|
70
|
+
});
|
71
|
+
|
72
|
+
var geocodeBtn = document.getElementById('geocode');
|
73
|
+
|
74
|
+
geocodeBtn.addEventListener('click', function (e) {
|
75
|
+
arcgisRest.geocode(document.getElementById("geocodeInput").value)
|
76
|
+
.then((response) => {
|
77
|
+
console.log("geocode", response);
|
78
|
+
});
|
79
|
+
});
|
80
|
+
|
81
|
+
var suggestBtn = document.getElementById('suggest');
|
82
|
+
|
83
|
+
suggestBtn.addEventListener('click', function (e) {
|
84
|
+
console.log(document.getElementById("suggestInput").value);
|
85
|
+
arcgisRest.suggest(document.getElementById("suggestInput").value)
|
86
|
+
.then((response) => {
|
87
|
+
console.log("suggest", response);
|
88
|
+
});
|
89
|
+
});
|
90
|
+
|
91
|
+
var reverseBtn = document.getElementById('reverse');
|
92
|
+
|
93
|
+
reverseBtn.addEventListener('click', function (e) {
|
94
|
+
// need to parse
|
95
|
+
arcgisRest.reverseGeocode(document.getElementById("reverseInput").value.split(','))
|
96
|
+
.then((response) => {
|
97
|
+
console.log("reverseGeocode", response);
|
98
|
+
});
|
99
|
+
});
|
100
|
+
|
101
|
+
var metadataBtn = document.getElementById('metadata');
|
102
|
+
|
103
|
+
metadataBtn.addEventListener('click', function (e) {
|
104
|
+
arcgisRest.serviceInfo()
|
105
|
+
.then((response) => {
|
106
|
+
console.log("metadata", response);
|
107
|
+
});
|
108
|
+
});
|
109
|
+
|
110
|
+
var bulkBtn = document.getElementById('bulk');
|
111
|
+
|
112
|
+
bulkBtn.addEventListener('click', function (e) {
|
113
|
+
var addresses = [{
|
114
|
+
"OBJECTID": 1,
|
115
|
+
"SingleLine": "380 New York St. Redlands 92373"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"OBJECTID": 2,
|
119
|
+
"SingleLine": "1 World Way Los Angeles 90045"
|
120
|
+
}];
|
121
|
+
arcgisRest.bulkGeocode({ authentication: auth, addresses })
|
122
|
+
.then((response) => {
|
123
|
+
console.log("bulkGeocode", response);
|
124
|
+
})
|
125
|
+
.catch((err) => {
|
126
|
+
console.warn(err);
|
127
|
+
});
|
128
|
+
});
|
129
|
+
</script>
|
130
|
+
</body>
|
131
|
+
</html>
|
@@ -0,0 +1,163 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"async": {
|
6
|
+
"version": "1.5.2",
|
7
|
+
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
8
|
+
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
|
9
|
+
},
|
10
|
+
"colors": {
|
11
|
+
"version": "1.0.3",
|
12
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
13
|
+
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
|
14
|
+
},
|
15
|
+
"corser": {
|
16
|
+
"version": "2.0.1",
|
17
|
+
"resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
|
18
|
+
"integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c="
|
19
|
+
},
|
20
|
+
"debug": {
|
21
|
+
"version": "2.6.8",
|
22
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
|
23
|
+
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
|
24
|
+
"requires": {
|
25
|
+
"ms": "2.0.0"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"ecstatic": {
|
29
|
+
"version": "2.2.1",
|
30
|
+
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-2.2.1.tgz",
|
31
|
+
"integrity": "sha512-ztE4WqheoWLh3wv+HQwy7dACnvNY620coWpa+XqY6R2cVWgaAT2lUISU1Uf7JpdLLJCURktJOaA9av2AOzsyYQ==",
|
32
|
+
"requires": {
|
33
|
+
"he": "^1.1.1",
|
34
|
+
"mime": "^1.2.11",
|
35
|
+
"minimist": "^1.1.0",
|
36
|
+
"url-join": "^2.0.2"
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"eventemitter3": {
|
40
|
+
"version": "1.2.0",
|
41
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz",
|
42
|
+
"integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg="
|
43
|
+
},
|
44
|
+
"he": {
|
45
|
+
"version": "1.1.1",
|
46
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
|
47
|
+
"integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
|
48
|
+
},
|
49
|
+
"http-proxy": {
|
50
|
+
"version": "1.16.2",
|
51
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz",
|
52
|
+
"integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=",
|
53
|
+
"requires": {
|
54
|
+
"eventemitter3": "1.x.x",
|
55
|
+
"requires-port": "1.x.x"
|
56
|
+
}
|
57
|
+
},
|
58
|
+
"http-server": {
|
59
|
+
"version": "0.10.0",
|
60
|
+
"resolved": "https://registry.npmjs.org/http-server/-/http-server-0.10.0.tgz",
|
61
|
+
"integrity": "sha1-sqRGsWqduH7TxiK6m+sbCFsSNKc=",
|
62
|
+
"requires": {
|
63
|
+
"colors": "1.0.3",
|
64
|
+
"corser": "~2.0.0",
|
65
|
+
"ecstatic": "^2.0.0",
|
66
|
+
"http-proxy": "^1.8.1",
|
67
|
+
"opener": "~1.4.0",
|
68
|
+
"optimist": "0.6.x",
|
69
|
+
"portfinder": "^1.0.13",
|
70
|
+
"union": "~0.4.3"
|
71
|
+
}
|
72
|
+
},
|
73
|
+
"mime": {
|
74
|
+
"version": "1.3.6",
|
75
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz",
|
76
|
+
"integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA="
|
77
|
+
},
|
78
|
+
"minimist": {
|
79
|
+
"version": "1.2.0",
|
80
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
81
|
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
82
|
+
},
|
83
|
+
"mkdirp": {
|
84
|
+
"version": "0.5.1",
|
85
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
86
|
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
87
|
+
"requires": {
|
88
|
+
"minimist": "0.0.8"
|
89
|
+
},
|
90
|
+
"dependencies": {
|
91
|
+
"minimist": {
|
92
|
+
"version": "0.0.8",
|
93
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
94
|
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
95
|
+
}
|
96
|
+
}
|
97
|
+
},
|
98
|
+
"ms": {
|
99
|
+
"version": "2.0.0",
|
100
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
101
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
102
|
+
},
|
103
|
+
"opener": {
|
104
|
+
"version": "1.4.3",
|
105
|
+
"resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
|
106
|
+
"integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg="
|
107
|
+
},
|
108
|
+
"optimist": {
|
109
|
+
"version": "0.6.1",
|
110
|
+
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
|
111
|
+
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
|
112
|
+
"requires": {
|
113
|
+
"minimist": "~0.0.1",
|
114
|
+
"wordwrap": "~0.0.2"
|
115
|
+
},
|
116
|
+
"dependencies": {
|
117
|
+
"minimist": {
|
118
|
+
"version": "0.0.10",
|
119
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
120
|
+
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
|
121
|
+
}
|
122
|
+
}
|
123
|
+
},
|
124
|
+
"portfinder": {
|
125
|
+
"version": "1.0.13",
|
126
|
+
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
|
127
|
+
"integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
|
128
|
+
"requires": {
|
129
|
+
"async": "^1.5.2",
|
130
|
+
"debug": "^2.2.0",
|
131
|
+
"mkdirp": "0.5.x"
|
132
|
+
}
|
133
|
+
},
|
134
|
+
"qs": {
|
135
|
+
"version": "2.3.3",
|
136
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
|
137
|
+
"integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ="
|
138
|
+
},
|
139
|
+
"requires-port": {
|
140
|
+
"version": "1.0.0",
|
141
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
142
|
+
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
|
143
|
+
},
|
144
|
+
"union": {
|
145
|
+
"version": "0.4.6",
|
146
|
+
"resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
|
147
|
+
"integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
|
148
|
+
"requires": {
|
149
|
+
"qs": "~2.3.3"
|
150
|
+
}
|
151
|
+
},
|
152
|
+
"url-join": {
|
153
|
+
"version": "2.0.2",
|
154
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.2.tgz",
|
155
|
+
"integrity": "sha1-wHJ1aWetJLi1nldBVRyqx49QuLc="
|
156
|
+
},
|
157
|
+
"wordwrap": {
|
158
|
+
"version": "0.0.3",
|
159
|
+
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
160
|
+
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-geocoder-vanilla",
|
3
|
+
"version": "1.6.0",
|
4
|
+
"private": true,
|
5
|
+
"description": "Vanilla JavaScript demo of @esri/arcgis-rest-geocoder",
|
6
|
+
"author": "",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"dependencies": {
|
9
|
+
"@esri/arcgis-rest-auth": "^1.6.0",
|
10
|
+
"@esri/arcgis-rest-geocoder": "^1.6.0",
|
11
|
+
"@esri/arcgis-rest-request": "^1.6.0"
|
12
|
+
},
|
13
|
+
"devDependencies": {
|
14
|
+
"http-server": "*"
|
15
|
+
},
|
16
|
+
"scripts": {
|
17
|
+
"start": "http-server ."
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
|
8
|
+
<script src="config.js"></script>
|
9
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/arcgis-rest-request.umd.js"></script>
|
10
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/arcgis-rest-auth.umd.js"></script>
|
11
|
+
|
12
|
+
<script>
|
13
|
+
try {
|
14
|
+
arcgisRest.UserSession.completeOAuth2({
|
15
|
+
clientId: ClientId,
|
16
|
+
redirectUri: "http://localhost:8080/post-sign-in.html",
|
17
|
+
popup: true,
|
18
|
+
portal: "https://www.arcgis.com/sharing/rest"
|
19
|
+
});
|
20
|
+
} catch (e) {
|
21
|
+
console.log('error', e);
|
22
|
+
}
|
23
|
+
</script>
|
24
|
+
</body>
|
25
|
+
</html>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Passing authentication to the JSAPI
|
2
|
+
|
3
|
+
This demo shows how to use `arcgis-rest-js` with the ArcGIS API for JavaScript. A typical use case would be when you need to query items or feature data _before_ you are ready to display a map or scene view. In this scenario, you should load the light-weight `arcgis-rest-js` libraries first and use them to perform your queries and/or authenticate with the ArcGIS platform. Then when you are ready to show a map or scene view, you would lazy-load the ArcGIS API for JavaScript with something like [esri-loader](https://github.com/Esri/esri-loader) and use it to create the map.
|
4
|
+
|
5
|
+
## Running this demo
|
6
|
+
1. Run `npm run bootstrap` in the repository's root directory.
|
7
|
+
1. Run `npm start` to spin up the development server.
|
8
|
+
1. Visit [http://localhost:8080](http://localhost:8080).
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
You can generate your own clientid by creating an application on the ArcGIS for Developers site. Be sure to add http://localhost:8080/ as a redirect uri for your application
|
3
|
+
|
4
|
+
once you have a clientid of your own, copy/paste it here and rename this file 'config.js'
|
5
|
+
*/
|
6
|
+
let clientId = "UAbPGRdXA9m1BGsU"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
|
6
|
+
<title>Share auth between rest-js and the jsapi</title>
|
7
|
+
|
8
|
+
<style>
|
9
|
+
html,
|
10
|
+
body,
|
11
|
+
#viewDiv {
|
12
|
+
padding: 0;
|
13
|
+
margin: 0;
|
14
|
+
height: 100%;
|
15
|
+
width: 100%;
|
16
|
+
}
|
17
|
+
</style>
|
18
|
+
|
19
|
+
<link rel="stylesheet" href="https://js.arcgis.com/4.7/esri/css/main.css">
|
20
|
+
|
21
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
22
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.js"></script>
|
23
|
+
<script src="node_modules/@esri/arcgis-rest-items/dist/umd/items.umd.js"></script>
|
24
|
+
|
25
|
+
<!--
|
26
|
+
NOTE: rather than include the ArcGIS API for JavaScript via a <script> tag
|
27
|
+
typically you would using something like https://github.com/Esri/esri-loader
|
28
|
+
to lazy-load the API _after_ you had used the light-weight arcgis-rest-js
|
29
|
+
libraries above to log in and fetch some data (see NOTE below)
|
30
|
+
-->
|
31
|
+
<script src="https://js.arcgis.com/4.7/"></script>
|
32
|
+
</head>
|
33
|
+
|
34
|
+
<body>
|
35
|
+
<div id="viewDiv"></div>
|
36
|
+
<script>
|
37
|
+
// first, log in
|
38
|
+
// using canned username/password from
|
39
|
+
// https://developers.arcgis.com/python/sample-notebooks/chennai-floods-analysis/
|
40
|
+
const session = new arcgisRest.UserSession({
|
41
|
+
username: "arcgis_python",
|
42
|
+
password: "P@ssword123"
|
43
|
+
});
|
44
|
+
|
45
|
+
// next, fetch a private item's data (not just the metadata)
|
46
|
+
// https://geosaurus.maps.arcgis.com/home/item.html?id=728043ac6a574a00b8f1cd5ee0eae8cd
|
47
|
+
const itemId = "728043ac6a574a00b8f1cd5ee0eae8cd";
|
48
|
+
arcgisRest.getItemData(itemId, { authentication: session })
|
49
|
+
.then(response => {
|
50
|
+
|
51
|
+
// once we have the private item, we can create a map
|
52
|
+
// NOTE: this is where you would lazy-load the ArcGIS API for JavaScript
|
53
|
+
require([
|
54
|
+
"esri/identity/IdentityManager",
|
55
|
+
"esri/views/MapView",
|
56
|
+
"esri/WebMap"
|
57
|
+
], function(
|
58
|
+
esriId, MapView, WebMap
|
59
|
+
) {
|
60
|
+
// pass the authenticated session over to the JSAPI Identity Manager
|
61
|
+
esriId.registerToken(session.toCredential());
|
62
|
+
|
63
|
+
// dig the webmap id out of the response
|
64
|
+
var webmap = new WebMap({
|
65
|
+
portalItem: {
|
66
|
+
id: response.map.itemId
|
67
|
+
}
|
68
|
+
});
|
69
|
+
|
70
|
+
// and pass it to the map view
|
71
|
+
var view = new MapView({
|
72
|
+
map: webmap,
|
73
|
+
container: "viewDiv"
|
74
|
+
});
|
75
|
+
});
|
76
|
+
});
|
77
|
+
</script>
|
78
|
+
</body>
|
79
|
+
</html>
|