- Updates code for stricter lint checks.
- Updates code for
no_leading_underscores_for_local_identifiers
lint.
- Updates imports for
prefer_relative_imports
. - Updates minimum Flutter version to 2.10.
- Adds a
size
parameter toBitmapDescriptor.fromBytes
, so web applications can specify the actual physical size of the bitmap. The parameter is not needed (and ignored) in other platforms. Issue #73789. - Fixes avoid_redundant_argument_values lint warnings and minor typos.
- Adds a new interface for inspecting the platform map state in tests.
- Adds new versions of
buildView
andupdateOptions
that take a new option class instead of a dictionary, to remove the cross-package dependency on magic string keys. - Adopts several parameter objects in the new
buildView
variant to future-proof it against future changes. - Ignores unnecessary import warnings in preparation for upcoming Flutter changes.
- Updates code for stricter analysis options.
- Removes unnecessary imports.
- Migrates from
ui.hash*
toObject.hash*
. - Updates minimum Flutter version to 2.5.0.
Removes dependency on meta
.
- Update to use the
verify
method introduced in plugin_platform_interface 2.1.0.
LatLng
constructor maintains longitude precision when given within acceptable range
- Add additional marker drag events
- Method
buildViewWithTextDirection
has been added to the platform interface.
- Add support for Hybrid Composition when building the Google Maps widget on Android. Set
MethodChannelGoogleMapsFlutter.useAndroidViewSurface
totrue
to build with Hybrid Composition.
- Preserve the
TileProvider
when copyingTileOverlay
, fixing a regression with tile overlays introduced in the null safety migration.
- Fix type issues in
isMarkerInfoWindowShown
andgetZoomLevel
introduced in the null safety migration.
- Mark constructors for CameraUpdate, CircleId, MapsObjectId, MarkerId, PolygonId, PolylineId and TileOverlayId as const
- Update platform_plugin_interface version requirement.
- Migrated to null-safety.
- BREAKING CHANGE: Removed deprecated APIs.
- BREAKING CHANGE: Many sets in APIs that used to treat null and empty set as equivalent now require passing an empty set.
- BREAKING CHANGE: toJson now always returns an
Object
; the details of the object type and structure should be treated as an implementation detail.
- Add TileOverlay support.
- Add support for holes in Polygons.
- Update Flutter SDK constraint.
- Temporarily add a
fromJson
constructor toBitmapDescriptor
so serialized descriptors can be synchronously re-hydrated. This will be removed when a fix for this issue lands.
- Add a
dispose
method to the interface, so implementations may cleanup resources acquired oninit
.
- Pass icon width/height if present on
fromAssetImage
BitmapDescriptors (web only)
- Update lower bound of dart dependency to 2.1.0.
- Initial open source release.
- Development.