Skip to content

Releases: hansemannn/titanium-googlemaps

4.1.0

17 Feb 21:19
Compare
Choose a tag to compare
  • Support the Google Maps SDK 3.0.0+ and Google Places SDK 3.0.0+
  • Deprecate the createPlacePicker API following the Google guidelines
  • Update google-map-ios-utils library to latest
  • Release map-delegates properly
  • (Internal) Move project to root directory
  • Expose clusterConfiguration, example:
const mapView = maps.createView({
    clusterConfiguration: {
        ranges: [10, 50, 100, 200, 500],
        rangeBackgrounds: [
            'buckets/m1.png',
            'buckets/m2.png',
            'buckets/m3.png',
            'buckets/m4.png',
            'buckets/m5.png'
        ],
        minimumClusterSize: 4,
        maximumClusterZoom: 20,
        animationDuration: 0.5
    },
    region: {
        latitude: 52.1337,
        longitude: 20.4200
    }
});

4.0.0

05 Dec 13:12
a3c5507
Compare
Choose a tag to compare

⚠️ This is a breaking change release

Breaking Changes

  • When selecting an annotation, the center region of it's map-view now is not updated with the location of the selected annotation anymore (parity with Ti.Map). If you want this behavior back, please use the CameraUpdate API supported by this module
  • The mapInsets property has been deprecated in favor of the padding property (parity with Ti.Map)
  • The click event is not fired when clicking the map anymore. Instead, the mapclick event is fired and contains the latitude / longitude already (parity with Ti.Map)

New API's

  • The location property (or setLocation method) for parity with Ti.Map

Fixes

  • The getter for the padding property is now returned correctly
  • The app does not crash anymore when quickly selecting between annotations

3.14.0

28 Nov 10:38
Compare
Choose a tag to compare
  • Add more parity with Ti.Map
    • Add parity for latitudeDelta and longitudeDelta
    • Add parity for showAnnotations
    • Add parity for the annotations, polylines, polygons and circles getters

3.13.0

20 Aug 14:45
Compare
Choose a tag to compare
  • Use Google Maps 2.7.0
  • Use Google Places 2.7.0
  • Use Google Places Picker 2.7.0

No new API's in this release. The focus is to incorporate the design changes from the native SDK.

3.12.0

16 May 19:34
f8fb1d6
Compare
Choose a tag to compare
  • Add zIndex property to all overlays (#120)
  • Fix crash for location that do not have an address

3.11.1

09 Nov 14:07
0a99ff6
Compare
Choose a tag to compare
  • Fix the Polygone holes property (#115) by @junskar

3.11.0

28 Oct 17:29
fbfa657
Compare
Choose a tag to compare
  • Update the GoogleMaps iOS-SDK to 2.5.0
  • Support iPhone-X configuration via paddingAdjustmentBehavior

3.10.0

23 Sep 14:52
Compare
Choose a tag to compare

3.9.0

11 Sep 11:46
Compare
Choose a tag to compare
  • Update to GoogleMaps SDK 2.4.0
  • Support for the Place Picker dialog
  • Support for the holes property inside polygons
  • Decreased binary size (~ 1/2)

3.8.0

28 Jul 13:21
Compare
Choose a tag to compare
  • Support for the Renderer API (#99)
  • Support for the Indoor Navigation API (#99)