marker_icon 0.6.3 marker_icon: ^0.6.3 copied to clipboard
A package to use local image, network image and svg file plus customization in google_maps_flutter marker icon.
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:flutter/material.dart';
import 'package:marker_icon/marker_icon.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
Set<Marker> _markers = <Marker>{};
@override
Widget build(BuildContext context) {
return Scaffold(
body: GoogleMap(
initialCameraPosition:
CameraPosition(target: LatLng(32.4279, 53.6880), zoom: 15),
markers: _markers,
),
floatingActionButton: FloatingActionButton.extended(
label: FittedBox(child: Text('Add Markers')),
onPressed: () async {
_markers.add(
Marker(
markerId: MarkerId('circleCanvasWithText'),
icon: await MarkerIcon.circleCanvasWithText(
size: Size(80, 80),
text: 'Hi',
circleColor: Colors.red,
fontColor: Colors.white,
fontSize: 22),
position: LatLng(35.8400, 50.9391),
),
);
_markers.add(
Marker(
markerId: MarkerId('downloadResizePicture'),
icon: await MarkerIcon.downloadResizePicture(
url:
'https://thegpscoordinates.net/photos/la/tehran_iran_5u679ezi8f.jpg',
imageSize: 150),
position: LatLng(35.6892, 51.3890),
),
);
_markers.add(
Marker(
markerId: MarkerId('downloadResizePictureCircle'),
icon: await MarkerIcon.downloadResizePictureCircle(
'https://thegpscoordinates.net/photos/la/tehran_iran_5u679ezi8f.jpg',
size: 150,
addBorder: true,
borderColor: Colors.white,
borderSize: 15),
position: LatLng(34.6416, 50.8746),
),
);
setState(() {});
},
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
);
}
}