Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.73 KB

REALEASENOTES.md

File metadata and controls

47 lines (32 loc) · 1.73 KB

Google Maps Android API Utility Library Release Notes

Version 0.5

New Features:

  • 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

Modifications from previous version:

  • 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() and getSnippet()

Issues resolved: