Maplibre

Latest version: v0.2.6

Safety actively analyzes 682404 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 26 of 33

0.23.0

New Features & Improvements

- Add support for `line-color` property functions [2938](https://github.com/mapbox/mapbox-gl-js/pull/2938)
- Add `Scale` control [2940](https://github.com/mapbox/mapbox-gl-js/pull/2940) [#3042](https://github.com/mapbox/mapbox-gl-js/pull/3042)
- Improve polygon label placement by rendering labels at the pole of inaccessibility [3038](https://github.com/mapbox/mapbox-gl-js/pull/3038)
- Add `Popup` `offset` option [1962](https://github.com/mapbox/mapbox-gl-js/issues/1962)
- Add `MarkerbindPopup` method [3056](https://github.com/mapbox/mapbox-gl-js/pull/3056)

Performance Improvements

- Improve performance of pages with multiple maps using a shared `WebWorker` pool [2952](https://github.com/mapbox/mapbox-gl-js/pull/2952)

Bugfixes

- Make `LatLngBounds` obey its documented argument order (`southwest`, `northeast`), allowing bounds across the dateline [2414](https://github.com/mapbox/mapbox-gl-js/pull/2414) :warning: **BREAKING CHANGE** :warning:
- Fix bug causing `fill-opacity` property functions to not render as expected [3061](https://github.com/mapbox/mapbox-gl-js/pull/3061)

0.22.1

New Features & Improvements

- Reduce library size by using minified version of style specification [2998](https://github.com/mapbox/mapbox-gl-js/pull/2998)
- Add a warning when rendering artifacts occur due to too many symbols or glyphs being rendered in a tile [2966](https://github.com/mapbox/mapbox-gl-js/pull/2966)

Bugfixes

- Fix bug causing exception to be thrown by `MapquerySourceFeatures` [3022](https://github.com/mapbox/mapbox-gl-js/pull/3022)
- Fix bug causing `Maploaded` to return true while there are outstanding tile updates [2847](https://github.com/mapbox/mapbox-gl-js/pull/2847)

0.22.0

Breaking Changes

- The `GeoJSONSource`, `VideoSource`, `ImageSource` constructors are now private. Please use `map.addSource({...})` to create sources and `map.getSource(...).setData(...)` to update GeoJSON sources. [2667](https://github.com/mapbox/mapbox-gl-js/pull/2667)
- `MaponError` has been removed. You may catch errors by listening for the `error` event. If no listeners are bound to `error`, error messages will be printed to the console. [2852](https://github.com/mapbox/mapbox-gl-js/pull/2852)

New Features & Improvements

- Increase max glyph atlas size to accommodate alphabets with large numbers of characters [2930](https://github.com/mapbox/mapbox-gl-js/pull/2930)
- Add support for filtering features on GeoJSON / vector tile `$id` [2888](https://github.com/mapbox/mapbox-gl-js/pull/2888)
- Update geolocate icon [2973](https://github.com/mapbox/mapbox-gl-js/pull/2973)
- Add a `close` event to `Popup`s [2953](https://github.com/mapbox/mapbox-gl-js/pull/2953)
- Add a `offset` option to `Marker` [2885](https://github.com/mapbox/mapbox-gl-js/pull/2885)
- Print `error` events without any listeners to the console [2852](https://github.com/mapbox/mapbox-gl-js/pull/2852)
- Refactored `Source` interface to prepare for custom source types [2667](https://github.com/mapbox/mapbox-gl-js/pull/2667)

Bugfixes

- Fix opacity property-functions for fill layers [2971](https://github.com/mapbox/mapbox-gl-js/pull/2971)
- Fix `DataCloneError` in Firefox and IE11 [2559](https://github.com/mapbox/mapbox-gl-js/pull/2559)
- Fix bug preventing camera animations from being triggered in `moveend` listeners [2944](https://github.com/mapbox/mapbox-gl-js/pull/2944)
- Fix bug preventing `fill-outline-color` from being unset [2964](https://github.com/mapbox/mapbox-gl-js/pull/2964)
- Fix webpack support [2887](https://github.com/mapbox/mapbox-gl-js/pull/2887)
- Prevent buttons in controls from acting like form submit buttons [2935](https://github.com/mapbox/mapbox-gl-js/pull/2935)
- Fix bug preventing map interactions near two controls in the same corner [2932](https://github.com/mapbox/mapbox-gl-js/pull/2932)
- Fix crash resulting for large style batch queue [2926](https://github.com/mapbox/mapbox-gl-js/issues/2926)

0.21.0

Breaking Changes

- GeoJSON polygon inner rings are now rewound for compliance with the [v2 vector tile](https://github.com/mapbox/vector-tile-spec/blob/master/2.1/README.md#4344-polygon-geometry-type). This may affect some uses of `line-offset`, reversing the direction of the offset. [2889](https://github.com/mapbox/mapbox-gl-js/issues/2889)

New Features & Improvements

- Add `text-pitch-alignment` style property [2668](https://github.com/mapbox/mapbox-gl-js/pull/2668)
- Allow query parameters on `mapbox://` URLs [2702](https://github.com/mapbox/mapbox-gl-js/pull/2702)
- Add `icon-text-fit` and `icon-text-fit-padding` style properties [2720](https://github.com/mapbox/mapbox-gl-js/pull/2720)
- Enable property functions for `icon-rotate` [2738](https://github.com/mapbox/mapbox-gl-js/pull/2738)
- Enable property functions for `fill-opacity` [2733](https://github.com/mapbox/mapbox-gl-js/pull/2733)
- Fire `Mapmouseout` events [2777](https://github.com/mapbox/mapbox-gl-js/pull/2777)
- Allow query parameters on all sprite URLs [2772](https://github.com/mapbox/mapbox-gl-js/pull/2772)
- Increase sprite atlas size to 1024px square, allowing more and larger sprites [2802](https://github.com/mapbox/mapbox-gl-js/pull/2802)
- Add `Marker` class [2725](https://github.com/mapbox/mapbox-gl-js/pull/2725) [#2810](https://github.com/mapbox/mapbox-gl-js/pull/2810)
- Add `{quadkey}` URL parameter [2805](https://github.com/mapbox/mapbox-gl-js/pull/2805)
- Add `circle-pitch-scale` style property [2821](https://github.com/mapbox/mapbox-gl-js/pull/2821)

Bugfixes

- Fix rendering of layers with large numbers of features [2794](https://github.com/mapbox/mapbox-gl-js/pull/2794)
- Fix exceptions thrown during drag-rotate interactions [2840](https://github.com/mapbox/mapbox-gl-js/pull/2840)
- Fix error when adding and removing a layer within the same update cycle [2845](https://github.com/mapbox/mapbox-gl-js/pull/2845)
- Fix false "Geometry exceeds allowed extent" warnings [2568](https://github.com/mapbox/mapbox-gl-js/issues/2568)
- Fix `Maploaded` returning true while there are outstanding tile updates [2847](https://github.com/mapbox/mapbox-gl-js/pull/2847)
- Fix style validation error thrown while removing a filter [2847](https://github.com/mapbox/mapbox-gl-js/pull/2847)
- Fix event data object not being passed for double click events [2814](https://github.com/mapbox/mapbox-gl-js/pull/2814)
- Fix multipolygons disappearing from map at certain zoom levels [2704](https://github.com/mapbox/mapbox-gl-js/issues/2704)
- Fix exceptions caused by `queryRenderedFeatures` in Safari and Firefox [2822](https://github.com/mapbox/mapbox-gl-js/pull/2822)
- Fix `mapboxglsupported()` returning `true` in old versions of IE11 [mapbox/mapbox-gl-supported1](https://github.com/mapbox/mapbox-gl-supported/issues/1)

0.20.1

Bugfixes

- Fixed exception thrown when changing `*-translate` properties via `setPaintProperty` ([2762](https://github.com/mapbox/mapbox-gl-js/issues/2762))

0.20.0

New Features & Improvements

- Add limited WMS support [2612](https://github.com/mapbox/mapbox-gl-js/pull/2612)
- Add `workerCount` constructor option [2666](https://github.com/mapbox/mapbox-gl-js/pull/2666)
- Improve performance of `locationPoint` and `pointLocation` [2690](https://github.com/mapbox/mapbox-gl-js/pull/2690)
- Remove "Not using VertexArrayObject extension" warning messages [2707](https://github.com/mapbox/mapbox-gl-js/pull/2707)
- Add `version` property to mapboxgl [2660](https://github.com/mapbox/mapbox-gl-js/pull/2660)
- Support property functions in `circle-opacity` and `circle-blur` [2693](https://github.com/mapbox/mapbox-gl-js/pull/2693)

Bugfixes

- Fix exception thrown by "drag rotate" handler [2680](https://github.com/mapbox/mapbox-gl-js/issues/2680)
- Return an empty array instead of an empty object from `queryRenderedFeatures` [2694](https://github.com/mapbox/mapbox-gl-js/pull/2694)
- Fix bug causing map to not render in IE

Page 26 of 33

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.