Skip to content

Releases: plainheart/echarts-extension-amap

v1.12.0

07 Jan 16:08
Compare
Choose a tag to compare
  • [fix] 修复对高德地图 2.0 版本检测逻辑的潜在缺陷。(#51)
  • [fix] 修复地图 resize 后,图表可能不更新的问题。
  • [fix] 修复 API 名称的拼写错误:由 setEChartsLayerVisiblity 修正为 setEChartsLayerVisibility

v1.11.0

30 Sep 08:56
Compare
Choose a tag to compare

更新内容

CHANGELOG

v1.10.1

03 Sep 10:13
Compare
Choose a tag to compare
  • [fix] use function instead of constant to allow importing the plugin before AMap is loaded.

v1.10.0

11 Jul 02:33
Compare
Choose a tag to compare
  • [feat] add returnMapCameraState option, enable it to get the map view information through echarts amaproam event, resolves #23.
  • [feat] add className amap-ec-layer for echarts layer.
  • [misc] remove lodash.debounce dependency.
  • [ci] use github workflow instead of travis-ci.

v1.9.5

05 Jun 04:52
Compare
Choose a tag to compare
  • [fix] remove sideEffects field from package.json, resolves #18.

v1.9.3

19 Mar 09:55
Compare
Choose a tag to compare
  • [feat] provided type definitions.
  • [feat] added the instruction about how to import this extension on demand with Apache ECharts 5.

v1.9.2

18 Mar 11:48
Compare
Choose a tag to compare
  • [fix] fix wrong call for getInstanceByDom.

v1.9.1

26 Feb 08:32
Compare
Choose a tag to compare

Some Minor Fixes for v1.9.0

  • [fix] fix potential NPE when first time to load AMap.
  • [fix] fix wrong echarts dependency in AMD section of UMD header.
  • [fix] update model when setEChartsLayerInteractive is called.

v1.9.0

24 Feb 13:22
Compare
Choose a tag to compare

Refactoring the codebase and implementation to be compatible with Apache ECharts 5 use API.

  • [feat]: The requirement has been changed to echarts/lib/echarts from echarts.

  • [feat]: Two new options have been provided since this version.

    • echartsLayerInteractive whether ECharts layer is interactive. The default value is true.

      • Disable it to make AMap own layer interactive, for example, to click the markers or any other overlays on the map.
      • Note that this option is not supported in IE 10 or older.
    • largeMode whether to enable large mode. The default value is false.

      • Enable it to improve the performance and experience if the chart data is large.
  • [feat]: Two new formats of library have been provided since this version.

    • commonjs dist/echarts-extension-amap.cjs.js
    • esm dist/echarts-extension-amap.esm.js

Deprecated

  • echartsLayerZIndex has been deprecated, use echartsLayerInteractive instead.

NOTE

  • If you don't want this plugin to register itself automatically, you could import the install method from export.js or src/index.js
    and then register it manually.

v1.8.0

12 Jan 11:27
Compare
Choose a tag to compare
  • [feat] support for switching map language. (Note that only for AMap 1.x)
  • [misc] remove incubating because of the graduation of Apache ECharts.