Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix basemap issue #545

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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