Interface Heatmap
-
- All Known Implementing Classes:
GoogleMapsHeatmapLayer,ViewHeatmap
public interface HeatmapRepresents a heatmap on the map provider.- Author:
- Johny Andres Ortega Ruiz <johny.ortega@kuwaiba.org>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetDissipateOnZoom()Gets if heatmaps dissipate on zoom.List<GeoCoordinate>getPoints()Gets the points displayed by this heatmap.voidsetDissipateOnZoom(boolean dissipating)Sets if heatmaps dissipate on zoom.voidsetPoints(List<GeoCoordinate> points)Sets the points to be displayed by this heatmap.
-
-
-
Method Detail
-
getDissipateOnZoom
boolean getDissipateOnZoom()
Gets if heatmaps dissipate on zoom.- Returns:
- True if heatmap dissipate on zoom.
-
setDissipateOnZoom
void setDissipateOnZoom(boolean dissipating)
Sets if heatmaps dissipate on zoom.- Parameters:
dissipating- True dissipate on zoom.
-
getPoints
List<GeoCoordinate> getPoints()
Gets the points displayed by this heatmap.- Returns:
- The points displayed by this heatmap.
-
setPoints
void setPoints(List<GeoCoordinate> points)
Sets the points to be displayed by this heatmap.- Parameters:
points- The points to be displayed by this heatmap.
-
-