From 45ac45550cb11a05024fab0fcb9ec3586e1816b1 Mon Sep 17 00:00:00 2001 From: John Yaist Date: Thu, 26 Sep 2024 09:55:31 -0700 Subject: [PATCH] fix broken links intro --- .../part1_introduction_to_using_the_map_widget.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/10-mapping-and-visualization/part1_introduction_to_using_the_map_widget.ipynb b/guide/10-mapping-and-visualization/part1_introduction_to_using_the_map_widget.ipynb index 1a5c0cf8f..784193dc4 100644 --- a/guide/10-mapping-and-visualization/part1_introduction_to_using_the_map_widget.ipynb +++ b/guide/10-mapping-and-visualization/part1_introduction_to_using_the_map_widget.ipynb @@ -33,7 +33,7 @@ "\n", "The `arcgis.map` module offers components for managing maps and scenes to visualize GIS data and analysis in a rich, user-friendly, and interactive way that is specifically designed to work with 2D or 3D data content.\n", "\n", - "The `GIS` object includes a [_map()_](/python/api-reference/arcgis.gis.toc.html#arcgis.gis.GIS.map) method that returns an instance of the [`arcgis.map.Map`](/python/api-reference/arcgis.map.toc.html#arcgis.map.Map) class which can be used for displaying geographic locations and visualizing GIS content, including analysis results. The _Map_ class creates a mapping widget utilizing the [ArcGIS Maps SDK for Javascript](https://developers.arcgis.com/javascript/latest/) powered by the modern backend architecture and processing of [JupyterLab 4](https://blog.jupyter.org/jupyterlab-4-0-is-here-388d05e03442) and [Notebook 7](https://blog.jupyter.org/announcing-jupyter-notebook-7-8d6d66126dcf).\n", + "The `GIS` object includes a [_map()_](/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis.GIS.map) method that returns an instance of the [`arcgis.map.Map`](/python/latest/api-reference/arcgis.map.toc.html#arcgis.map.Map) class which can be used for displaying geographic locations and visualizing GIS content, including analysis results. The _Map_ class creates a mapping widget utilizing the [ArcGIS Maps SDK for Javascript](https://developers.arcgis.com/javascript/latest/) powered by the modern backend architecture and processing of [JupyterLab 4](https://blog.jupyter.org/jupyterlab-4-0-is-here-388d05e03442) and [Notebook 7](https://blog.jupyter.org/announcing-jupyter-notebook-7-8d6d66126dcf).\n", "\n", "To use the map widget, call the `gis.map()` method and assign it to a variable that you can then query to bring up the widget in the notebook as a new _Map_ object. Use the `mode='3d'` argument to create a new _Scene_." ] @@ -163,7 +163,7 @@ "metadata": {}, "source": [ "## Adding layers to the map\n", - "An important functionality of the map widget is its ability to add and render web layers. To add a layer, access the `content` property on the _map_ object to initialize a [MapContent](/python/api-reference/arcgis.map.toc.html#mapcontent) object, then access the [`add()`](/python/api-reference/arcgis.map.toc.html#arcgis.map.map_widget.MapContent.add) method and pass _Item_, _Layer_, or _Spatially Enabled DataFrame_ input to visualize data on the map:" + "An important functionality of the map widget is its ability to add and render web layers. To add a layer, access the `content` property on the _map_ object to initialize a [MapContent](/python/latest/api-reference/arcgis.map.toc.html#mapcontent) object, then access the [`add()`](/python/latest/api-reference/arcgis.map.toc.html#arcgis.map.map_widget.MapContent.add) method and pass _Item_, _Layer_, or _Spatially Enabled DataFrame_ input to visualize data on the map:" ] }, {