Maplibre

Latest version: v0.2.6

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

Scan your dependencies

Page 30 of 33

0.11.4

Bugfixes

- Fix alpha blending of alpha layers ([1684](https://github.com/mapbox/mapbox-gl-js/issues/1684))

0.11.3

Bugfixes

- Fix GeoJSON rendering and performance ([1685](https://github.com/mapbox/mapbox-gl-js/pull/1685))

UX Improvements

- Use SVG assets for UI controls ([1657](https://github.com/mapbox/mapbox-gl-js/pull/1657))
- Zoom out with shift + dblclick ([1666](https://github.com/mapbox/mapbox-gl-js/issues/1666))

0.11.2

- Misc performance improvements

Bugfixes

- Fix sprites on systems with non-integer `devicePixelRatio`s ([1029](https://github.com/mapbox/mapbox-gl-js/issues/1029) [#1475](https://github.com/mapbox/mapbox-gl-js/issues/1475) [#1476](https://github.com/mapbox/mapbox-gl-js/issues/1476))
- Fix layer minZoom being ignored if not less than source maxZoom
- Fix symbol placement at the start of a line ([1461](https://github.com/mapbox/mapbox-gl-js/issues/1461))
- Fix `raster-opacity` on non-tile sources ([1270](https://github.com/mapbox/mapbox-gl-js/issues/1270))
- Ignore boxzoom on shift-click ([1655](https://github.com/mapbox/mapbox-gl-js/issues/1655))

UX Improvements

- Enable line breaks on common punctuation ([1115](https://github.com/mapbox/mapbox-gl-js/issues/1115))

API Improvements

- Add toString and toArray methods to LngLat, LngLatBounds ([1571](https://github.com/mapbox/mapbox-gl-js/issues/1571))
- Add `Transformresize` method
- Add `MapgetLayer` method ([1183](https://github.com/mapbox/mapbox-gl-js/issues/1183))
- Add `Transformunmodified` property ([1452](https://github.com/mapbox/mapbox-gl-js/issues/1452))
- Propagate WebGL context events ([1612](https://github.com/mapbox/mapbox-gl-js/pull/1612))

0.11.1

Bugfixes

- Add statistics and checkboxes to debug page
- Fix `MapfeaturesAt` for non-4096 vector sources ([1529](https://github.com/mapbox/mapbox-gl-js/issues/1529))
- Don't fire `mousemove` on drag-pan
- Fix maxBounds constrains ([1539](https://github.com/mapbox/mapbox-gl-js/issues/1539))
- Fix maxBounds infinite loop ([1538](https://github.com/mapbox/mapbox-gl-js/issues/1538))
- Fix memory leak in worker
- Assert valid `TileCoord`, fix wrap calculation in `TileCoordcover` ([1483](https://github.com/mapbox/mapbox-gl-js/issues/1483))
- Abort raster tile load if not in viewport ([1490](https://github.com/mapbox/mapbox-gl-js/issues/1490))

API Improvements

- Add `Map` event listeners for `mouseup`, `contextmenu` (right click) ([1532](https://github.com/mapbox/mapbox-gl-js/issues/1532))

0.11.0

API Improvements

- Add `MapfeaturesIn`: a bounding-box feature query
- Emit stylesheet validation errors ([1436](https://github.com/mapbox/mapbox-gl-js/issues/1436))

UX Improvements

- Handle v8 style `center`, `zoom`, `bearing`, `pitch` ([1452](https://github.com/mapbox/mapbox-gl-js/issues/1452))
- Improve circle type styling ([1446](https://github.com/mapbox/mapbox-gl-js/issues/1446))
- Improve dashed and patterned line antialiasing

Bugfixes

- Load images in a way that respects Cache-Control headers
- Filter for rtree matches to those crossing bbox
- Log errors by default ([1463](https://github.com/mapbox/mapbox-gl-js/issues/1463))
- Fixed modification of `text-size` via `setLayoutProperty` ([1451](https://github.com/mapbox/mapbox-gl-js/issues/1451))
- Throw on lat > 90 || < -90. ([1443](https://github.com/mapbox/mapbox-gl-js/issues/1443))
- Fix circle clipping bug ([1457](https://github.com/mapbox/mapbox-gl-js/issues/1457))

0.10.0

Breaking changes

- Switched to [longitude, latitude] coordinate order, matching GeoJSON. We anticipate that mapbox-gl-js will be widely used
with GeoJSON, and in the long term having a coordinate order that is consistent with GeoJSON will lead to less confusion
and impedance mismatch than will a [latitude, longitude] order.

The following APIs were renamed:

- `LatLng` was renamed to `LngLat`
- `LatLngBounds` was renamed to `LngLatBounds`
- `PopupsetLatLng` was renamed to `PopupsetLngLat`
- `PopupgetLatLng` was renamed to `PopupgetLngLat`
- The `latLng` property of Map events was renamed `lngLat`

The following APIs now expect array coordinates in [longitude, latitude] order:

- `LngLat.convert`
- `LngLatBounds.convert`
- `PopupsetLngLat`
- The `center` and `maxBounds` options of the `Map` constructor
- The arguments to `MapsetCenter`, `MapfitBounds`, `MappanTo`, and `Mapproject`
- The `center` option of `MapjumpTo`, `MapeaseTo`, and `MapflyTo`
- The `around` option of `MapzoomTo`, `MaprotateTo`, and `MapeaseTo`
- The `coordinates` properties of video and image sources

- Updated to mapbox-gl-style-spec v8.0.0 ([Changelog](https://github.com/mapbox/mapbox-gl-style-spec/blob/v8.0.0/CHANGELOG.md)). Styles are
now expected to be version 8. You can use the [gl-style-migrate](https://github.com/mapbox/mapbox-gl-style-lint#migrations)
utility to update existing styles.

- The format for `mapbox://` style and glyphs URLs has changed. For style URLs, you should now use the format
`mapbox://styles/:username/:style`. The `:style` portion of the URL no longer contains a username. For font URLs, you
should now use the format `mapbox://fonts/:username/{fontstack}/{range}.pbf`.
- Mapbox default styles are now hosted via the Styles API rather than www.mapbox.com. You can make use of the Styles API
with a `mapbox://` style URL pointing to a v8 style, e.g. `mapbox://styles/mapbox/streets-v8`.
- The v8 satellite style (`mapbox://styles/mapbox/satellite-v8`) is now a plain satellite style, and not longer supports labels
or contour lines via classes. For a labeled satellite style, use `mapbox://styles/mapbox/satellite-hybrid`.

- Removed `mbgl.config.HTTP_URL` and `mbgl.config.FORCE_HTTPS`; https is always used when connecting to the Mapbox API.
- Renamed `mbgl.config.HTTPS_URL` to `mbgl.config.API_URL`.

Bugfixes

- Don't draw halo when halo-width is 0 ([1381](https://github.com/mapbox/mapbox-gl-js/issues/1381))
- Reverted shader changes that degraded performance on IE

API Improvements

- You can now unset layout and paint properties via the `setLayoutProperty` and `setPaintProperty` APIs
by passing `undefined` as a property value.
- The `layer` option of `featuresAt` now supports an array of layers.

Page 30 of 33

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.