Flutter 高德地图之自定义Marks

image.png

高德地图插件大家想必已经不陌生了(不熟的去看上一篇),按产品需求开发时需要在地图上展示自定义的Mark,观察Mark方法:

(new) Marker Marker({
        required LatLng position,
        double alpha = 1.0,
        Offset anchor = const Offset(0.5, 1.0),
        bool clickable = true,
        bool draggable = false,
        BitmapDescriptor icon = BitmapDescriptor.defaultMarker,
        bool infoWindowEnable = true,
        InfoWindow infoWindow = InfoWindow.noText,
        double rotation = 0.0,
        bool visible = true,
        double zIndex = 0.0,
        void Function(String)? onTap,
        void Function(String, LatLng)? onDragEnd,
    })

发现并没有 Mark widget,没有widget就意味着无法自定义widget,这可如何是好,但聪明的我又怎会被这小小的难题困住,百度、谷歌😁疑难解答不懂就问这是个好习惯,找到了解决思路,以BitmapDescriptor icon为突破口。

通过观察BitmapDescriptor发现提供了展示png字节的方法:

static BitmapDescriptor fromBytes(Uint8List byteData) {
   return BitmapDescriptor._(<dynamic>['fromBytes', byteData]);
 }

至此是不是就明了了,只需将自定义的widget转为png在转为ByteData即可。

wiget->ByteData:

 Future<ByteData?> widgetToByteData(Widget widget,
     {Alignment alignment = Alignment.center,
     Size size = const Size(double.maxFinite, double.maxFinite),
     double devicePixelRatio = 1.0,
     double pixelRatio = 1.0}) async {
     RenderRepaintBoundary repaintBoundary = RenderRepaintBoundary();
     RenderView renderView = RenderView(
     child: RenderPositionedBox(alignment: alignment, child: repaintBoundary),
     configuration: ViewConfiguration(
       size: size,
       devicePixelRatio: devicePixelRatio,
     ),
     window: ui.window,
   );

   PipelineOwner pipelineOwner = PipelineOwner();
   pipelineOwner.rootNode = renderView;
   renderView.prepareInitialFrame();

   BuildOwner buildOwner = BuildOwner(focusManager: FocusManager());
   RenderObjectToWidgetElement rootElement = RenderObjectToWidgetAdapter(
    container: repaintBoundary,
    child: widget,
   ).attachToRenderTree(buildOwner);
   buildOwner.buildScope(rootElement);
   buildOwner.finalizeTree();

   pipelineOwner.flushLayout();
   pipelineOwner.flushCompositingBits();
   pipelineOwner.flushPaint();

   ui.Image image = await repaintBoundary.toImage(pixelRatio: pixelRatio);
   ByteData? byteData = await image.toByteData(format: ui.ImageByteFormat.png);

   return byteData;
 }

此方法直接copy拿走,多费一点脑子算我输,实现思路已OK

附上完整的代码:

import 'dart:ui' as ui;
.
.
 AMapWidget? map;
 Map<String, Marker> initMarkerMap = <String, Marker>{};
 AMapController? _mapController;

 late BitmapDescriptor icon;

 ///自定义地图mark的 widget转字节
 Future<ByteData?> widgetToByteData(Widget widget,
     {Alignment alignment = Alignment.center,
     Size size = const Size(double.maxFinite, double.maxFinite),
     double devicePixelRatio = 1.0,
     double pixelRatio = 1.0}) async {
   RenderRepaintBoundary repaintBoundary = RenderRepaintBoundary();

   RenderView renderView = RenderView(
     child: RenderPositionedBox(alignment: alignment, child: repaintBoundary),
     configuration: ViewConfiguration(
       size: size,
       devicePixelRatio: devicePixelRatio,
     ),
     window: ui.window,
   );

   PipelineOwner pipelineOwner = PipelineOwner();
   pipelineOwner.rootNode = renderView;
   renderView.prepareInitialFrame();

   BuildOwner buildOwner = BuildOwner(focusManager: FocusManager());
   RenderObjectToWidgetElement rootElement = RenderObjectToWidgetAdapter(
     container: repaintBoundary,
     child: widget,
   ).attachToRenderTree(buildOwner);
   buildOwner.buildScope(rootElement);
   buildOwner.finalizeTree();

   pipelineOwner.flushLayout();
   pipelineOwner.flushCompositingBits();
   pipelineOwner.flushPaint();

   ui.Image image = await repaintBoundary.toImage(pixelRatio: pixelRatio);
   ByteData? byteData = await image.toByteData(format: ui.ImageByteFormat.png);

   return byteData;
 }

///自定义widget
 widgetContext( ) {
   return Container(
     width: 540.w,
     height: 180.h,
     decoration: BoxDecoration(
         border:
             Border.all(width: 5.w, color: Color.fromRGBO(236, 253, 255, 1)),
        color: Colors.white,
         borderRadius: BorderRadius.only(
             topLeft: Radius.circular(70.r),
             topRight: Radius.circular(70.r),
             bottomRight: Radius.circular(70.r),
             bottomLeft: Radius.circular(12.r))),
     child: Column(
       mainAxisAlignment: MainAxisAlignment.center,
       children: [
             ···       
       ],
     ),
   );
 }

 ///添加自定义mark
 addMark() async {
     ByteData? byteData =
         await widgetToByteData(widgetContext());
     icon = BitmapDescriptor.fromBytes(byteData!.buffer.asUint8List());
     Marker marker = Marker(
       infoWindowEnable: false,
       position: LatLng(double.parse(item['lat'].toString()),
           double.parse(item['lng'].toString())),
       icon: icon,
       anchor: const Offset(0, 1.0),
     );
     initMarkerMap[marker.id] = marker;
   }
   setState(() {
     map = AMapWidget(
       mapType: MapType.bus,
       labelsEnabled: false,
       onLocationChanged: (argument) {
         onLocationChangeds(argument);
       },
       myLocationStyleOptions: MyLocationStyleOptions(false),
       privacyStatement: AmapConfig.amapPrivacyStatement,
       apiKey: AmapConfig.amapApiKeys,
       onMapCreated: onMapCreated,
       markers: Set<Marker>.of(initMarkerMap.values),
     );
   });
 }
@override
 void initState() {
   // TODO: implement initState
   super.initState();
   addMark();
 }

如果到此处本文完结那和别的文章也就没什么不同之处了,注意⚠️有两处坑

a.对于Text的定义要用

Directionality(
           textDirection: TextDirection.ltr,
           child:Text('')
        )

b.自定义的widget只能纵向布局因此可采用富文本来解决横向布局需求 RichText()

====== 嫖走吧,有良心的就点点赞加个关注$$ =======

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容