MapContext.on(string event, Object detail)

基础库 2.13.0 开始支持,低版本需做兼容处理

监听地图事件。

markerClusterCreate

缩放或拖动导致新的聚合簇产生时触发,仅返回新创建的聚合簇信息。

返回参数

参数类型说明
clustersArray<ClusterInfo>聚合簇数据

markerClusterClick

聚合簇的点击事件。

返回参数

参数类型说明
clusterClusterInfo聚合簇

ClusterInfo 结构

参数类型说明
clusterIdNumber聚合簇的 id
centerLatLng聚合簇的坐标
markerIdsArray<Number>该聚合簇内的点标记数据数组

参数

string event

event 的合法值

说明最低版本
markerClusterCreate
markerClusterClick

Object detail

示例代码

  1. MapContext.on('markerClusterCreate', (res) => {})
  2. MapContext.on('markerClusterClick', (res) => {})