Swap web maps in the same view

This sample demonstrates how to initialize multiple WebMaps from Portal for ArcGIS items. You can then swap the active webmap inside a single view.

This sample uses the following web maps:

  • Missing Migrants - shows all of the missing migrant reports from the International Organization for Migration (IOM). The bright blue symbols represent reports submitted in 2015 or later while the dark blue symbolizes incidents before 2015. The larger symbols represent greater number of reported deaths.
  • Refugee Routes - shows refugee routes into Europe.
  • 2015 European Sea Arrivals - shows arrivals in southern Europe of refugees by sea, January through July 2015.

First, create an array of WebMaps without loading them.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
const webmaps = webmapids.map((webmapid) => {
  return new WebMap({
    portalItem: {
      id: webmapid
    }
  });
});

Then based on an action, such as a button click, you can swap the map by referencing the new web map in the view object.

Use dark colors for code blocksCopy
1
2
const webmap = webmaps[id];
view.map = webmap;

Please refer to the [ArcGIS Organization portals for information on how the ArcGIS Maps SDK for JavaScript makes use of working with portal items.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.