Hi,
I'm sure I'm just missing something simple, but I'm getting nowhere so I figure I should just ask.
I want to try the ArcGIS API for Python in the live sandbox. I copied and pasted the code for in the "your_first_notebook" (Jupyter Notebook ). Everything looks good for the first 6 steps. Then I paste in:
#Create a new map object
map1 = gis.map()
#Focus the map to the part of the world containing the example item
map1.extent = example_item.extent
#Display the map
map1
And nothing happens. Shouldn't it display a map?
I also tried:
<SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit;">from</SPAN> arcgis<SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">.</SPAN>gis <SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit;">import</SPAN> GIS
gis <SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;">=</SPAN> GIS<SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">(</SPAN><SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">)</SPAN>
map <SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;">=</SPAN> gis<SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">.</SPAN>map<SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">(</SPAN><SPAN class="" style="color: #669900; border: 0px; font-weight: inherit;">"Paris"</SPAN><SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;">)</SPAN>
map
from this thread (https://community.esri.com/thread/217346-map-is-not-showing-in-arcgis-api-for-python-demo-test ) and nothing happens. Actually that's not quite true. I will say that the Chrome console shows all sorts of errors.
Any help you can provide would be appreciated.