Skip to content

Commit

Permalink
Fix basemap issue (opengeos#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Sep 12, 2023
1 parent 669d979 commit 7e00026
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ examples/**/*.tif
examples/html/
docs/cache/
docs/changelog_update.md
**/*.las
# docs/*.html
cache/
testing/
Expand Down Expand Up @@ -140,3 +141,4 @@ ENV/
.idea/

tests/test_testings.py
docs/changelog_update.py
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v0.24.3 - Sep 12, 2023

**What's Changed**

- Add session header to map tiles download by @giswqs in [#541](https://github.com/opengeos/leafmap/pull/541)
- Update opengeos url by @giswqs in [#542](https://github.com/opengeos/leafmap/pull/542)
- Add changelog script by @giswqs in [#544](https://github.com/opengeos/leafmap/pull/544)

**Full Changelog**: [v0.24.2...v0.24.3](https://github.com/opengeos/leafmap/compare/v0.24.2...v0.24.3)

## v0.24.2 - Sep 10, 2023

**What's Changed**
Expand Down
2 changes: 1 addition & 1 deletion leafmap/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -10085,7 +10085,7 @@ def get_google_map(
return

if api_key is None:
api_key = os.environ.get("GOOGLE_MAPS_API_KEY", "")
api_key = os.environ.get("GOOGLE_MAPS_API_KEY", "YOUR-API-KEY")

if api_key == "":
MAP_TILES = {
Expand Down

0 comments on commit 7e00026

Please sign in to comment.