Fix map marker placement issue on web

This commit is contained in:
Shawn 2023-12-06 10:34:48 -07:00
parent 432becb17a
commit 3533369066
2 changed files with 0 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,4 +1,3 @@
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart'; import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:wonders/assets.dart'; import 'package:wonders/assets.dart';
@ -6,5 +5,4 @@ Marker getMapsMarker(LatLng position) => Marker(
markerId: MarkerId('0'), markerId: MarkerId('0'),
position: position, position: position,
icon: AppBitmaps.mapMarker, icon: AppBitmaps.mapMarker,
anchor: Offset(.5, .7),
); );