程序包 | 说明 |
---|---|
com.baidu.mapapi.map |
地图展示与操作相关方法,覆盖物相关方法
|
限定符和类型 | 方法和说明 |
---|---|
InfoWindow |
Marker.getInfoWindow()
获取 Marker 绑定的InfoWindow
|
InfoWindow |
InfoWindowAdapter.getInfoWindow(Marker marker) |
限定符和类型 | 方法和说明 |
---|---|
java.util.List<InfoWindow> |
BaiduMap.getAllInfoWindows()
5.4.0版本新增接口
获取已添加的所有InfoWindow对象
|
限定符和类型 | 方法和说明 |
---|---|
void |
BaiduMap.hideInfoWindow(InfoWindow infoWindow)
5.4.0版本新增接口
清除特定的InfoWindow
|
MarkerOptions |
MarkerOptions.infoWindow(InfoWindow infoWindow)
设置 Marker 绑定的InfoWindow
|
void |
BaiduMap.showInfoWindow(InfoWindow infoWindow)
显示 InfoWindow, 该接口会先隐藏其他已添加的InfoWindow, 再添加新的InfoWindow
|
void |
Marker.showInfoWindow(InfoWindow mInfoWindow)
添加 Marker 关联的InfoWindow,两者的更新是相互独立的。
|
void |
BaiduMap.showInfoWindow(InfoWindow infoWindow,
boolean isHideOthers)
5.4.0版本新增接口
显示 InfoWindow, 该接口可以设置是否在添加InfoWindow之前,先隐藏其他已经添加的InfoWindow.
|
void |
Marker.showSmoothMoveInfoWindow(InfoWindow mInfoWindow)
该接口适用于小车平滑移动中,InfoWindow需要跟随 Marker 频繁动态更新View属性的场景。
|
限定符和类型 | 方法和说明 |
---|---|
void |
BaiduMap.showInfoWindows(java.util.List<InfoWindow> infoWindowList)
5.4.0版本新增接口
添加多个InfoWindow
|