Open itagan opened 2 years ago
方法1(引入整个): import * as mapvgl from 'mapvgl'; new mapvgl.MarkerListLayer({})…… 跟示例一样。
方法2(按需引入): import { ClusterLayer } from 'mapvgl';
vue3中: const clusterLayer = ref(null); clusterLayer.value = new ClusterLayer({ ...defaultOptions, ...options, });
BMapGL.Map怎么处理???
方法1(引入整个): import * as mapvgl from 'mapvgl'; new mapvgl.MarkerListLayer({})…… 跟示例一样。
方法2(按需引入): import { ClusterLayer } from 'mapvgl';
vue3中: const clusterLayer = ref(null); clusterLayer.value = new ClusterLayer({ ...defaultOptions, ...options, });