You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 451B

123456789101112131415161718192021
  1. /**
  2. * @Author: Caven
  3. * @Date: 2020-02-02 16:20:10
  4. */
  5. import './extension/ComponentModel'
  6. import './extension/ComponentView'
  7. import CoordinateSystem from './extension/CoordinateSystem'
  8. import ChartLayer from './ChartLayer'
  9. echarts.registerCoordinateSystem('GLMap', CoordinateSystem)
  10. echarts.registerAction(
  11. {
  12. type: 'GLMapRoam',
  13. event: 'GLMapRoam',
  14. update: 'updateLayout'
  15. },
  16. function(payload, ecModel) {}
  17. )
  18. export { ChartLayer }