wonders/lib/ui/common/google_maps_marker.dart

11 lines
319 B
Dart
Raw Normal View History

2022-08-29 20:38:28 -06:00
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:wonders/assets.dart';
Marker getMapsMarker(LatLng position) => Marker(
markerId: MarkerId('0'),
position: position,
icon: AppBitmaps.mapMarker,
anchor: Offset(.5, .7),
);