Skip to content

Commit

Permalink
Revamped basemap module opengeos#91
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Aug 5, 2021
1 parent 9390144 commit f29c6da
Show file tree
Hide file tree
Showing 13 changed files with 414 additions and 564 deletions.
6 changes: 3 additions & 3 deletions docs/notebooks/00_key_features.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@
"metadata": {},
"outputs": [],
"source": [
"m = leafmap.Map(google_map=\"TERRAIN\")\n",
"m.add_basemap(\"Esri National Geographic\")\n",
"m = leafmap.Map()\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down Expand Up @@ -432,7 +432,7 @@
"outputs": [],
"source": [
"m = leafmap.Map()\n",
"m.add_basemap(\"Esri Standard\")\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down
1 change: 1 addition & 0 deletions docs/notebooks/02_using_basemaps.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"source": [
"m = leafmap.Map()\n",
"m.add_basemap(\"HYBRID\")\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/12_split_map.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"metadata": {},
"outputs": [],
"source": [
"print(leafmap.basemap_tiles.keys())"
"print(leafmap.leafmap_basemaps.keys())"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/16_heremap.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"metadata": {},
"outputs": [],
"source": [
"m.add_basemap(basemap=\"Esri Topo World\")"
"m.add_basemap(basemap=\"Esri.WorldTopoMap\")"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions examples/notebooks/00_key_features.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@
"metadata": {},
"outputs": [],
"source": [
"m = leafmap.Map(google_map=\"TERRAIN\")\n",
"m.add_basemap(\"Esri National Geographic\")\n",
"m = leafmap.Map()\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down Expand Up @@ -432,7 +432,7 @@
"outputs": [],
"source": [
"m = leafmap.Map()\n",
"m.add_basemap(\"Esri Standard\")\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down
1 change: 1 addition & 0 deletions examples/notebooks/02_using_basemaps.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"source": [
"m = leafmap.Map()\n",
"m.add_basemap(\"HYBRID\")\n",
"m.add_basemap(\"Esri.NatGeoWorldMap\")\n",
"m"
]
},
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/12_split_map.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"metadata": {},
"outputs": [],
"source": [
"print(leafmap.basemap_tiles.keys())"
"print(leafmap.leafmap_basemaps.keys())"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/16_heremap.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"metadata": {},
"outputs": [],
"source": [
"m.add_basemap(basemap=\"Esri Topo World\")"
"m.add_basemap(basemap=\"Esri.WorldTopoMap\")"
]
},
{
Expand Down
Loading

0 comments on commit f29c6da

Please sign in to comment.