Skip to content

Commit

Permalink
Update changelog (#792)
Browse files Browse the repository at this point in the history
* Update changelog

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
giswqs and pre-commit-ci[bot] authored Jun 26, 2024
1 parent b8a103e commit 6d514fb
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 17 deletions.
36 changes: 36 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## v0.34.6 - Jun 24, 2024

**What's Changed**

- Fix add_geojson paint bug by @giswqs in [#788](https://github.com/opengeos/leafmap/pull/788)

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

## v0.34.5 - Jun 23, 2024

**What's Changed**

- Add a Container class by @giswqs in [#786](https://github.com/opengeos/leafmap/pull/786)
- Add add_source function and custom marker notebook by @giswqs in [#787](https://github.com/opengeos/leafmap/pull/787)

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

## v0.34.4 - Jun 23, 2024

**What's Changed**

- Add COG and STAC examples for MapLibre by @giswqs in [#783](https://github.com/opengeos/leafmap/pull/783)
- Fix MapLibre style bug by @giswqs in [#785](https://github.com/opengeos/leafmap/pull/785)

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

## v0.34.3 - Jun 23, 2024

**What's Changed**

- Fix terrain style api key bug by @giswqs in [#780](https://github.com/opengeos/leafmap/pull/780)
- Add get style layers and more examples by @giswqs in [#781](https://github.com/opengeos/leafmap/pull/781)
- Add more MapLibre examples by @giswqs in [#782](https://github.com/opengeos/leafmap/pull/782)

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

## v0.34.2 - Jun 21, 2024

**What's Changed**
Expand Down
32 changes: 15 additions & 17 deletions docs/maplibre/draw_features.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": true
},
"metadata": {},
"outputs": [],
"source": [
"m = leafmap.Map(center=[-100, 40], zoom=3, style=\"positron\")\n",
Expand All @@ -100,14 +98,14 @@
"source": [
"m = leafmap.Map(center=[-100, 40], zoom=3, style=\"positron\")\n",
"geojson = {\n",
" 'type': 'FeatureCollection',\n",
" 'features': [\n",
" \"type\": \"FeatureCollection\",\n",
" \"features\": [\n",
" {\n",
" 'id': 'abc',\n",
" 'type': 'Feature',\n",
" 'properties': {},\n",
" 'geometry': {\n",
" 'coordinates': [\n",
" \"id\": \"abc\",\n",
" \"type\": \"Feature\",\n",
" \"properties\": {},\n",
" \"geometry\": {\n",
" \"coordinates\": [\n",
" [\n",
" [-119.08, 45.95],\n",
" [-119.79, 42.08],\n",
Expand All @@ -116,15 +114,15 @@
" [-119.08, 45.95],\n",
" ]\n",
" ],\n",
" 'type': 'Polygon',\n",
" \"type\": \"Polygon\",\n",
" },\n",
" },\n",
" {\n",
" 'id': 'xyz',\n",
" 'type': 'Feature',\n",
" 'properties': {},\n",
" 'geometry': {\n",
" 'coordinates': [\n",
" \"id\": \"xyz\",\n",
" \"type\": \"Feature\",\n",
" \"properties\": {},\n",
" \"geometry\": {\n",
" \"coordinates\": [\n",
" [\n",
" [-103.87, 38.08],\n",
" [-108.54, 36.44],\n",
Expand All @@ -135,7 +133,7 @@
" [-103.87, 38.08],\n",
" ]\n",
" ],\n",
" 'type': 'Polygon',\n",
" \"type\": \"Polygon\",\n",
" },\n",
" },\n",
" ],\n",
Expand Down

0 comments on commit 6d514fb

Please sign in to comment.