Skip to content

Commit

Permalink
Fix typo (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs authored Oct 10, 2024
1 parent 1b830d6 commit 442a877
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions book/geospatial/leafmap.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@
"source": [
"m = leafmap.Map()\n",
"url = \"https://github.com/opengeos/datasets/releases/download/world/world_cities.csv\"\n",
"m.add_marker_cluster(url, x=\"latitude\", y=\"longitude\", layer_name=\"World cities\")\n",
"m.add_marker_cluster(url, x=\"longitude\", y=\"latitude\", layer_name=\"World cities\")\n",
"m"
]
},
Expand Down Expand Up @@ -1524,7 +1524,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.7"
"version": "3.11.8"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion book/geospatial/leafmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ For a large number of points, you can group them into clusters. This method redu
```{code-cell} ipython3
m = leafmap.Map()
url = "https://github.com/opengeos/datasets/releases/download/world/world_cities.csv"
m.add_marker_cluster(url, x="latitude", y="longitude", layer_name="World cities")
m.add_marker_cluster(url, x="longitude", y="latitude", layer_name="World cities")
m
```

Expand Down

0 comments on commit 442a877

Please sign in to comment.