marker_icon 0.6.2 copy "marker_icon: ^0.6.2" to clipboard
marker_icon: ^0.6.2 copied to clipboard

outdated

A package to use local image, network image and svg file plus customization in google_maps_flutter marker icon.

A package to use local image, network image and svg file plus customization in google_maps_flutter marker icon. #

Get started #

Add dependency #

dependencies:
  marker_icon: ^0.6.1

Add rounded marker icon with border from network image: #

 onPressed: () async {
  markers.add(
   Marker( 
     icon: await MarkerIcon.downloadResizePictureCircle(
     'https://thegpscoordinates.net/photos/la/tehran_iran_5u679ezi8f.jpg',
      size: 150,
      addBorder: true,
      borderColor: Colors.white,
      borderSize: 15),
        ),
     );
  }

svgAsset : a svg icon marker from your asset folder. #

pictureAsset : a picture(png,jpeg,etc...) icon marker from your asset folder. #

pictureAssetWithCenterText : a picture(png,jpeg,etc...) icon marker from your asset folder With Center text. #

circleCanvasWithText : a circle canvas with center text. #

downloadResizePicture : a picture(png,jpeg,etc...) icon marker from internet. #

downloadResizePictureCircle : a rounded picture(png,jpeg,etc...) icon marker with border from internet. #

69
likes
0
pub points
84%
popularity

Publisher

unverified uploader

A package to use local image, network image and svg file plus customization in google_maps_flutter marker icon.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_cache_manager, flutter_svg, google_maps_flutter

More

Packages that depend on marker_icon