Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align next with link fixes from master #2080

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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_."
]
Expand Down Expand Up @@ -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:"
]
},
{
Expand Down