google_maps_flutter_web 0.3.0 copy "google_maps_flutter_web: ^0.3.0" to clipboard
google_maps_flutter_web: ^0.3.0 copied to clipboard

outdated

Web platform implementation of google_maps_flutter

0.3.0 #

  • Migrate package to null-safety.
  • Breaking changes:
    • The property icon of a Marker cannot be null. Defaults to BitmapDescriptor.defaultMarker
    • The property initialCameraPosition of a GoogleMapController can't be null. It is also marked as required.
    • The parameter creationId of the buildView method cannot be null (this should be handled internally for users of the plugin)
    • Most of the Controller methods can't be called after remove/dispose. Calling these methods now will throw an Assertion error. Before it'd be a no-op, or a null-pointer exception.

0.2.1 #

  • Move integration tests to example.
  • Tweak pubspec dependencies for main package.

0.2.0 #

  • Make this plugin compatible with the rest of null-safe plugins.
  • Noop tile overlays methods, so they don't crash on web.

NOTE: This plugin is not null-safe yet!

0.1.2 #

  • Update min Flutter SDK to 1.20.0.

0.1.1 #

  • Auto-reverse holes if they're the same direction as the polygon. Issue.

0.1.0+10 #

  • Update package:google_maps_flutter_platform_interface to ^1.1.0.
  • Add support for Polygon Holes.

0.1.0+9 #

  • Update Flutter SDK constraint.

0.1.0+8 #

  • Update package:google_maps_flutter_platform_interface to ^1.0.5.
  • Add support for fromBitmap BitmapDescriptors. Issue.

0.1.0+7 #

  • Substitute undefined_prefixed_name: ignore analyzer setting by a dart:ui shim with conditional exports. Issue.

0.1.0+6 #

  • Ensure a single InfoWindow is shown at a time. Issue.

0.1.0+5 #

  • Update package:google_maps to ^3.4.5.
  • Fix GoogleMapController.getLatLng(). Issue.
  • Make InfoWindow contents clickable so onTap works as advertised. Issue.
  • Fix InfoWindow snippets when converting initial markers. Issue.

0.1.0+4 #

  • Update package:sanitize_html to ^1.4.1 to prevent a crash when InfoWindow title/snippet have links.

0.1.0+3 #

  • Fix crash when converting initial polylines and polygons. Issue.
  • Correctly convert Colors when rendering polylines, polygons and circles. Issue.

0.1.0+2 #

  • Fix crash when converting Markers with icon explicitly set to null. Issue.

0.1.0+1 #

  • Port e2e tests to use the new integration_test package.

0.1.0 #

  • First open-source version