Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

[google_maps_flutter_web] Allow marker position updates #6753

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## NEXT
## 0.4.0+4

* Allows marker position updates. Issue [#83467](https://github.com/flutter/flutter/issues/83467).
* Updates code for `no_leading_underscores_for_local_identifiers` lint.

## 0.4.0+3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,16 @@ void main() {
testWidgets('update', (WidgetTester tester) async {
final MarkerController controller = MarkerController(marker: marker);
final gmaps.MarkerOptions options = gmaps.MarkerOptions()
..draggable = true;
..draggable = true
..position = gmaps.LatLng(42, 54);

expect(marker.draggable, isNull);

controller.update(options);

expect(marker.draggable, isTrue);
expect(marker.position?.lat, equals(42));
expect(marker.position?.lng, equals(54));
});

testWidgets('infoWindow null, showInfoWindow.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,22 @@ void main() {
expect(
controller.markers[const MarkerId('1')]?.marker?.draggable, isFalse);

// Update the marker with radius 10
// Update the marker with draggability and position
final Set<Marker> updatedMarkers = <Marker>{
const Marker(markerId: MarkerId('1'), draggable: true),
const Marker(
markerId: MarkerId('1'),
draggable: true,
position: LatLng(42, 54),
),
};
controller.changeMarkers(updatedMarkers);

expect(controller.markers.length, 1);
expect(
controller.markers[const MarkerId('1')]?.marker?.draggable, isTrue);
final gmaps.Marker? marker =
controller.markers[const MarkerId('1')]?.marker;
expect(marker?.draggable, isTrue);
expect(marker?.position?.lat, equals(42));
expect(marker?.position?.lng, equals(54));
});

testWidgets('removeMarkers', (WidgetTester tester) async {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,17 +284,15 @@ gmaps.Icon? _gmIconFromBitmapDescriptor(BitmapDescriptor bitmapDescriptor) {

// Computes the options for a new [gmaps.Marker] from an incoming set of options
// [marker], and the existing marker registered with the map: [currentMarker].
// Preserves the position from the [currentMarker], if set.
gmaps.MarkerOptions _markerOptionsFromMarker(
Marker marker,
gmaps.Marker? currentMarker,
) {
return gmaps.MarkerOptions()
..position = currentMarker?.position ??
gmaps.LatLng(
marker.position.latitude,
marker.position.longitude,
)
..position = gmaps.LatLng(
marker.position.latitude,
marker.position.longitude,
)
..title = sanitizeHtml(marker.infoWindow.title ?? '')
..zIndex = marker.zIndex
..visible = marker.visible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter_web
description: Web platform implementation of google_maps_flutter
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 0.4.0+3
version: 0.4.0+4

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down