- Click handling was previously only available for GeoJSON, but is now available for KML layers as well
- Also works for multipolygons, multilinestring and multipoints
- Info windows can be added to clustered markers
-
OnFeatureClickListener changed from accepting a GeoJsonFeature to a Feature, which is supported for KML as well.
Previous version:
public interface GeoJsonOnFeatureClickListener { void onFeatureClick(GeoJsonFeature feature); }
New version:
public interface GeoJsonOnFeatureClickListener { void onFeatureClick(Feature feature); }
-
GeoJsonGeometry and KmlGeometry interfaces replaced by common Geometry interface
-
ClusterItem interface has two new methods:
getTitle()
andgetSnippet()