Skip to content

Commit a1b6760

Browse files
committedOct 1, 2022
changelog
1 parent 1562994 commit a1b6760

File tree

1 file changed

+3
-35
lines changed

1 file changed

+3
-35
lines changed
 

‎CHANGELOG.md

+3-35
Original file line numberDiff line numberDiff line change
@@ -7,96 +7,78 @@ Once we reach 1.0 all deprecations will be removed and the project will switch t
77

88
## Uncommitted
99

10+
## 0.21.3 - 2022-10-01
11+
- Add `dir="ltr"` to map container div.
12+
1013
## 0.21.2 - 2022-09-18
11-
### Changes
1214
- Support custom content as children of `<Marker><Icon /></Marker>`
1315

1416
## 0.21.1 - 2022-09-18
15-
### Changes
1617
- Fix the usage of `<ZoomControl />` buttons inside `<form>` tags.
1718

1819
## 0.21.0 - 2022-03-13
19-
### Changes
2020
- Add `GeoJson`, `GeoJsonLoader`, `GeoJsonFeature` by @baldulin #149
2121

2222
## 0.20.0 - 2022-01-29
23-
### Changes
2423
- Add `tileComponent` prop, which lets you swap out the default `<img />` component for a custom one.
2524

2625
## 0.19.7 - 2021-07-04
27-
### Changes
2826
- Improve `<Draggable />` for cases when controlling its location via `onDragMove`.
2927

3028
## 0.19.6 - 2021-05-29
31-
### Changes
3229
- Minor change: the default value for `dpr` in `provider` functions now defaults to `1` (instead of `undefined`)
3330

3431
## 0.19.5 - 2021-03-20
35-
### Changes
3632
- Draggable: Set the cursor to `grab` and`grabbing` by default
3733

3834
## 0.19.4 - 2021-03-20
39-
### Changes
4035
- Center align the tiles and overlays when the pre-rendered map is not the same size as on the final rendered page.
4136

4237
## 0.19.3 - 2021-03-20
43-
### Changes
4438
- Add `maptiler` to providers
4539

4640
## 0.19.0 - 2021-03-19
47-
### Changes
4841
- Add `<Draggable />` overlay
4942

5043
## 0.18.1 - 2021-03-19
51-
### Changes
5244
- Support `import { osm, ... } from 'pigeon-maps/providers'`
5345

5446
## 0.18.0 - 2021-03-17
55-
### Changes
5647
- Remove default export of `Map`. You must now do `import { Map } from 'pigeon-maps'`.
5748
- Add `<ZoomControl />`
5849
- Add `mapProps` and `setCenterZoom` to the props given to child components
5950
- Set the default provider to OSM again (from stamenToner)
6051

6152
## 0.17.3 - 2021-03-16
62-
### Changes
6353
- With `metaWheelZoom` you can now also scroll with the CTRL key (#120 by olehmaksym)
6454

6555
## 0.17.2 - 2021-03-16
66-
### Changes
6756
- Use a `ResizeObserver` to update the size even when the window doesn't resize (#125 by @mischnic)
6857
- Add classes `pigeon-tile-box`, `pigeon-tiles`, `pigeon-overlays` and `pigeon-overlay-warning` to internal divs.
6958

7059
## 0.17.1 - 2021-02-13
71-
### Changes
7260
- Fixes faulty types for `Marker` and `Overlay`
7361

7462
## 0.17.0 - 2020-12-03
75-
### Changes
7663
- Add `Marker` and `Overlay` components to the pigeon-maps "standard library"
7764
- Fix a bug with mousewheel scroll when width & height present (#117 by @roux1max)
7865

7966
## 0.16.1 - 2020-08-28
80-
### Changes
8167
- Add empty ALT attribute to map tiles
8268

8369
## 0.16.0 - 2020-08-10
84-
### Changes
8570
- Rewritten in TypeScript without changing any functionality
8671
- Attribution links now open in a new tab
8772

8873
## 0.15.0 - 2020-03-03
89-
### Changes
9074
- Changed the default tile provider from the broken Wikimedia to OSM
9175
- Add more information about setting up your own tile provider
9276
- Add lazy loading for tiles (#87 by @maxsteenbergen)
9377

9478
## 0.14.0 - 2019-08-31
95-
### Changes:
9679
- React 16.8 support by removing deprecated componentWillReceiveProps and replacing it with componentDidUpdate. #70 @JoaquimEsteves
9780

9881
## 0.13.0 - 2019-05-09
99-
### Changes
10082
- Add the `dprs` parameter to `<Map />` and `dpr` as the 4th argument for the `provider` functions.
10183

10284
Previously if you wanted to support HiDPI screens your `provider` function looked something like this:
@@ -125,56 +107,42 @@ The value of `dpr` will be `undefined` for the default tile (`<img src>`) which
125107
If you don't need server rendering, then the old approach of having no `dprs` array and figuring out the `dpr` from the `window` inside `provider` will continue to work fine.
126108

127109
## 0.12.1 - 2019-03-26
128-
### Fixes
129110
- Fix 100% height issue. #48 and #4
130111

131112
## 0.12.0 - 2019-03-26
132-
### Changes
133113
- Removed inferno support, which reportedly didn't even work (#39).
134114
- Started using rollup and babel loose mode to reduce the size even more. #59 @markusenglund (a [~8% reduction!](https://bundlephobia.com/result?p=pigeon-maps@0.12.0))
135115

136116
## 0.11.11 - 2018-11-16
137-
### Fixes
138117
- Fix wheel/touchpad scrolling on Chrome 73+, which requires non-passive event handlers for wheel events. [See also this](https://github.com/facebook/react/issues/14856).
139118

140119
## 0.11.8 - 2018-11-16
141-
### Fixes
142120
- Another edge case bug with animation and changing the center before the animation had time to finish.
143121

144122
## 0.11.7 - 2018-11-16
145-
### Fixes
146123
- Bug when animating between screens and forced to jump to a far away screen, it would freeze instead of jumping.
147124

148125
## 0.11.6 - 2018-11-05
149-
### Fixes
150126
- The `pigeon-drag-block` class also works with touch events
151127

152128
## 0.11.5 - 2018-10-18
153-
### Changes
154129
- Fixes "0 0 0 0" appearing if the map has no size. #46 @PofMagicfingers
155130

156131
## 0.11.4 - 2018-10-18
157-
### Changes
158132
- Added an undocumented feature `limitBounds`. If defaults to `center`, but if set to `edge`, we will try show as much map as possible. See issue #45 for details.
159133

160134
## 0.11.3 - 2018-10-17
161-
### Changes
162135
- Added a polyfill for `window.requestAnimationFrame`
163136
- Updated attribution URL to https://pigeon-maps.js.org/
164137

165138
## 0.11.2 - 2018-10-10
166-
### Addition
167139
- Added `boxClassname` props allowing you to apply css for the tiles div only #43 @sgerin
168-
169-
### Fix
170140
- Fix bug zoom position when browser loses focus #41 @benrampon
171141

172142
## 0.11.1 - 2018-09-29
173-
### Updates
174143
- Explicitly set touch event listeners to use non-passive mode. Fixes iOS 11.3 dragging issue. #40 @Jercik
175144

176145
## 0.11.0 - 2018-09-19
177-
### Updates
178146
- Added `minZoom` and `maxZoom` to limit the zoom range
179147
- Several small bugfixes
180148

0 commit comments

Comments
 (0)
Please sign in to comment.