Skip to content

Commit c7fc4df

Browse files
committed
update links to latest url
1 parent 6dfd917 commit c7fc4df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

guide/10-mapping-and-visualization/part3_visualizing_spatial_data_on_the_map_widget.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -964,9 +964,9 @@
964964
"> **Note:** Anything can be drawn from known `Geometry` objects, coordinate pairs, and `FeatureSet` objects.\n",
965965
"\n",
966966
"\n",
967-
"The `shape` argument can be one of the below objects. See [`MapContent.draw() reference](/python/latest/api-reference/arcgis.map.toc.html#arcgis.map.map_widget.MapContent.draw) for details:\n",
967+
"The `shape` argument can be one of the below objects. See [draw()](/python/latest/api-reference/arcgis.map.toc.html#arcgis.map.map_widget.MapContent.draw) for details:\n",
968968
" - Known `Geometry` objects: Shape is one of the following: circle, ellipse, Polygon, Polyline, MultiPoint, Point, rectangle, triangle. \n",
969-
" - [Coordinate pair](/python/api-reference/arcgis.geometry.html#arcgis.geometry.MultiPoint.coordinates): specified shape as a list of [lat, long]. Eg: [34, -81] \n",
969+
" - [Coordinate pair](/python/latest/api-reference/arcgis.geometry.html#arcgis.geometry.MultiPoint.coordinates): specified shape as a list of [lat, long]. Eg: [34, -81] \n",
970970
" - `FeatureSet`: shape can be a FeatureSet object.\n",
971971
" - `Dict` object representing a `geometry`.\n",
972972
"\n",
@@ -1043,10 +1043,10 @@
10431043
"from arcgis.map.symbols import PictureMarkerSymbolEsriPMS\n",
10441044
"from arcgis.map.popups import PopupInfo\n",
10451045
"\n",
1046-
"house_symbol = PictureMarkerSymbolEsriPMS(**{\"angle\":0,\"xoffset\":0,\"yoffset\":0,\"type\":\"esriPMS\",\n",
1046+
"star_symbol = PictureMarkerSymbolEsriPMS(**{\"angle\":0,\"xoffset\":0,\"yoffset\":0,\"type\":\"esriPMS\",\n",
10471047
" \"url\":\"http://static.arcgis.com/images/Symbols/Shapes/RedStarLargeB.png\",\n",
10481048
" \"contentType\":\"image/png\",\"width\":24,\"height\":24})\n",
1049-
"map7b.content.draw(pt, symbol=house_symbol)"
1049+
"map7b.content.draw(pt, symbol=star_symbol)"
10501050
]
10511051
},
10521052
{

0 commit comments

Comments
 (0)