Skip to content

Latest commit

 

History

History
248 lines (216 loc) · 11.1 KB

CHANGELOG.md

File metadata and controls

248 lines (216 loc) · 11.1 KB

MapTiler SDK Changelog

2.4.1

Bug Fixes

  • The class AJAXError is now imported as part of the maplibregl namespace (CommonJS limitation from Maplibre GL JS) (#129)
  • The Map constructor can now also take a language as a string (#131)

2.4.0

New Features

  • Shows a warning message in the map container if WebGL context is lost
  • The event "webglContextLost" is now exposed
  • The Map class instances now have a .setTerrainAnimationDuration(d: number) method
  • The Map class instances now have events related to terrain animation "terrainAnimationStart" and "terrainAnimationStop"
  • expose the function getWebGLSupportError() to detect WebGL compatibility
  • Adding detection of invalid style objects of URLs and falls back to a default style if necessary.
  • Updating to Maplibre v4.7.1

2.3.0

Bug Fixes

  • Updating from MapLibre v4.4.1 to v4.7.0. See Maplibre changelogs for v4.5.0, v4.5.1, v4.5.2, and v4.6.0
  • Fixed the elevation shift glitch happening with terrain animation after calling .easeTo() (#110)
  • The heatmap layer helper missed the beforeId option

New Features

Others

  • Updating from MapLibre v4.4.1 to v4.7.0
  • Updating MapTilerGeolocateControl to match latest Maplibre update (#104)
  • Now sourcing language list from @maptiler/client (maptiler/maptiler-client-js#42)

2.2.2

Bug Fixes

  • No longer using named imports from Maplibre (#99)
  • Exporting types with classes for Maplibre types (#99)

Others

  • Bundling now made with ViteJS (no longer Rollup)

2.2.1

Bug Fixes

  • The types from classes defined in Maplibre are now exposed more reliably (#98)

Others

  • Loading (lazy) the RTL plugin ealier and outside Map instance to prevent display glitch

2.2.0

New Features

  • Displays a message in the map div when WebGL2 is not supported (#92)
  • Fails quietly if caching API is not usable (non https, non localhost) (#93)

Bug Fixes

  • Removed Inflight as a second degree dependency (#95)
  • Removed double export of class+type from Maplibre (#95)
  • Fixing the loading of the RTL plugin (#96)

Others

  • Replaced Eslint and Prettier by BiomeJS (ang got rid of tons of dependencies, some were problematic) (#95)
  • Fixed many formatting and linting issues pointed by BiomeJS (#95)

2.1.0

New Features

  • Update from Maplibre v4.1.3 to v4.4.1 (see Maplibre's changelog)

Bug Fixes

  • Floating buildings, fixed with the above update

2.0.3

Bug Fixes

  • Fixed issue in attribution control

2.0.2

Bug Fixes

  • Fix for the client-side caching breaking GeoJSON sources #82
  • Improved attribution management

Others

  • Update to MapLibre GL JS v4.1.3

2.0.1

Bug Fixes

  • Bundling issue solved by #79

2.0.0

New Features

  • Updating with MapLibre GL JS v4.1
  • Added client-side caching mechanism for tiles and fonts

Bug Fixes

  • Language switching now only occurs on layers fueled by a MapTiler Cloud source

Others

  • Removed Map.loadImageAsync() as MapLibre's .loadImage() is now promise based.
  • Added all the exports that are now exposed from MapLibre
  • Adapted some newly exported classes to make them TypeScript-compatible with the Map classes from both MapLibre and MapTiler SDK

1.2.1

New Features

  • Elevation lookup at maptilersdk.elevation with the function .at(), .batch() and for geojson payloads. From the update of the MapTiler Client library
  • the new ready event. Called only once after load and wait for all the controls managed by the Map constructor to be dealt with (as one relies on async logic)
  • the new Map lifecycle method .onReadyAsync() corresponding to a promise-based equivalent of the the ready event.

Bug Fixes

  • The index now exposes the geocoding option types from the Client library

Others

  • Update of the Maptiler Client library to v1.8.0 that brings the elevation and math module
  • Update with the last version of MapLibre GL JS (v3.6.2)

1.2.0

New Features

  • Added the Minimap control #54
  • Added vector layer helpers to create easier:
    • point layer (#61)
    • heatmap layer (#61)
    • polyline layer, including parsing from GPX/KML (#51)
    • polygon layer (#56)
  • Add the ColorRamp class to create and customize color ramps, as well as ColorRampCollection with many predefined ones (as part of #61)
  • Improved the language management for increased compatibility with MapTiler Customize (#58)

Bug Fixes

  • Fixed type export (#47)

Others

  • Upgrade to MapLibre v3.5.2 (#63)
  • Update of TypeScript configuration moduleResolution to Bundler (#62)

1.1.2

Bug Fixes

  • Now using a fixed version of MapLibre GL. No longer use ^ because this caused issues as MapLibre made minor/patch update that were not backward compatible

1.1.1

Others

1.1.0

New Features

  • Bringing back Map's options.transformRequest and .setTransformRequest()

Bug Fixes

  • Fixed the MapTiler logo rel name and its nofollow feature
  • Made the few necessary changes acording to updating the ML v3. No braking change for SDK API

Others

1.0.12

New Features

  • Added a new language flag Language.STYLE_LOCK to force keep the language form the style and prevent any further update. Can be at a sigle map instance level (via constuctor option language) or via global config (config.primaryLanguage)

Bug Fixes

  • The fallback language was {name:latin}, it is now replaced by {name}, which is for the local name (present by default for many places while latin is less frequent).

1.0.11

Bug Fixes

  • Now exporting MaptilerNavigationControl

Others

  • Documentation update for Map's option.maptilerLogo that was a bit unclear

1.0.10

New Features

  • Terrain growing animation on enabling/disabling
  • Added Map custom event loadWithTerrain
  • Added Map lifecycle methods .onLoadAsync() and .onLoadWithTerrainAsync()

Others

1.0.9

New Features

  • Added new styles:
    • MapStyle.STREETS.NIGHT
    • MapStyle.WINTER.DARK
    • MapStyle.OUTDOOR.DARK

Bug Fixes

  • If the geolocate option is missing from Map constructor, then it's considered false
  • The instance types for the following MapLibre classes are now fully exported:
    • NavigationControl
    • GeolocateControl
    • AttributionControl
    • LogoControl
    • ScaleControl
    • FullscreenControl
    • TerrainControl
    • Popup
    • Marker
    • Style
    • LngLat
    • LngLatBounds
    • MercatorCoordinate
    • Evented
    • AJAXError
    • CanvasSource
    • GeoJSONSource
    • ImageSource
    • RasterDEMTileSource
    • RasterTileSource
    • VectorTileSource
    • VideoSource
    • MapMLGL
  • The following class have been extended to provide greater compatibility with SDK,s MapL
    • Popup
    • Marker
    • Style
    • CanvasSource
    • GeoJSONSource
    • ImageSource
    • RasterDEMTileSource
    • RasterTileSource
    • VectorTileSource
    • VideoSource
    • NavigationControl
    • GeolocateControl
    • AttributionControl
    • LogoControl
    • ScaleControl
    • FullscreenControl
    • TerrainControl

1.0.8

Bug Fixes

  • Since v1.0.7, the Map primary language (when custom) was no longer persistant on style update.

1.0.7

New Features

  • The apiKey can now be specified in the Map constructor (will propagate to config)
  • The language can now be speficifed in the Map constructo (will not propagete to config and will apply only to this specific instance)
  • Map now has the method .getSdkConfig() to retrieve the config object.
  • Map now has the method .getMaptilerSessionId() to retrieve the MapTiler session ID Both .getSdkConfig() and .getMaptilerSessionId() are handy for layers or control built outside of the SDK that still need some of the configuration to interact with the server. Those components do not always have access to the internal of the SDK (especially that the config is scoped) but can access to the Map instance to which they are added with the implementation of the .onAdd() method.

1.0.6

New Features

  • Now exposing MaptilerGeolocateControl for external initialization if needed
  • Now exposing MaptilerTerrain for external initialization if needed

1.0.5

New Features

  • Terrain elevation is now using MapTiler's terrain-rgb-v2

1.0.4

Others

  • Improved the geolocate control behavior by not zooming out

1.0.3

Bug Fixes

  • Fixed the usage of relative path style JSON (in Map constructor and .setStyle())

1.0.2

Bug Fixes

  • Fixed the dependency scheme of MapLibre import.

1.0.1

Others

  • Reducing the NPM size by ignoring documentation images

1.0.0

Others

  • First public version!