Closed mouadhkaabachi closed 5 years ago
Hi, Is there a way to remove the entire heatmap layer ( created with GoogleMapsUtils.setupHeatmap(mapView, positionSet) )
GoogleMapsUtils.setupHeatmap(mapView, positionSet)
I found the solution: var config = GoogleMapsUtils.setupHeatmap(mapView, positionSet) and then to remove config.overlay.remove()
var config = GoogleMapsUtils.setupHeatmap(mapView, positionSet)
config.overlay.remove()
Hi, Is there a way to remove the entire heatmap layer ( created with
GoogleMapsUtils.setupHeatmap(mapView, positionSet)
)