Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.js 949B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @Author:Caven
  3. * @Date:2020-03-05 21:53:35
  4. */
  5. import ContextMenu from './type/ContextMenu'
  6. import LocationBar from './type/LocationBar'
  7. import MapSplit from './type/MapSplit'
  8. import MapSwitch from './type/MapSwitch'
  9. import Popup from './type/Popup'
  10. import Tooltip from './type/Tooltip'
  11. import HawkeyeMap from './type/HawkeyeMap'
  12. import Compass from './type/Compass'
  13. import DistanceLegend from './type/DistanceLegend'
  14. import ZoomController from './type/ZoomController'
  15. import LoadingMask from './type/LoadingMask'
  16. export default function createWidgets() {
  17. return {
  18. popup: new Popup(),
  19. contextMenu: new ContextMenu(),
  20. tooltip: new Tooltip(),
  21. mapSwitch: new MapSwitch(),
  22. mapSplit: new MapSplit(),
  23. locationBar: new LocationBar(),
  24. hawkeyeMap: new HawkeyeMap(),
  25. compass: new Compass(),
  26. distanceLegend: new DistanceLegend(),
  27. zoomController: new ZoomController(),
  28. loadingMask: new LoadingMask()
  29. }
  30. }