use of org.activityinfo.shared.report.model.layers.PointMapLayer in project activityinfo by bedatadriven.
the class LayersWidget method addLayer.
public void addLayer(MapLayer layer) {
if (layer instanceof PointMapLayer) {
((PointMapLayer) layer).setClustering(new NoClustering());
}
mapElement.getLayers().add(layer);
reportEventBus.fireChange();
updateStore();
}
Aggregations