Skip to content

Commit

Permalink
chore: update webmap (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygup authored May 31, 2024
1 parent 07f1fc9 commit f97d8f4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion esm-samples/esbuild/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import WebMap from "@arcgis/core/WebMap";

const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-angular-cli/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class AppComponent implements OnInit, OnDestroy {

const webmap = new WebMap({
portalItem: {
id: 'aa1d3f80270146208328cf66d022e09c',
id: '70b726074af04a7e9839d8a07f64c039',
},
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-custom-ui/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function App() {
if (mapDiv.current) {
const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-esm-cdn/esm-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

const webmap = new WebMap({
portalItem: {
id: 'aa1d3f80270146208328cf66d022e09c',
id: '70b726074af04a7e9839d8a07f64c039',
},
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-react/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function App() {
*/
const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-vite-ts/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "./style.css";

const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/jsapi-vue/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
async mounted() {
const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c",
id: "70b726074af04a7e9839d8a07f64c039",
},
});
Expand Down
2 changes: 1 addition & 1 deletion esm-samples/rollup/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import WebMap from "@arcgis/core/WebMap";

const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down
2 changes: 1 addition & 1 deletion esm-samples/webpack/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import WebMap from "@arcgis/core/WebMap";

const webmap = new WebMap({
portalItem: {
id: "aa1d3f80270146208328cf66d022e09c"
id: "70b726074af04a7e9839d8a07f64c039"
}
});

Expand Down

0 comments on commit f97d8f4

Please sign in to comment.