如何为Google Maps iOS Flutter使用自定义标记

问题描述 投票:0回答:1

我最近一直在使用flutter和IOS开发一个项目,但是我找不到在flutter中使用Google Maps SDK在地图上显示自定义标记的方法。有谁知道如何实现这一点,或者至少有解决方法?

BitmapDescriptor myIcon;
@override
  void initState() {
    BitmapDescriptor.fromAssetImage(
        ImageConfiguration(size: Size(48, 48)), 
'assets/my_icon.png')
    .then((onValue) {
  myIcon = onValue;
});
}

...


 setState(() {
      _markers.add(
        Marker(
            markerId: MarkerId('newyork'),
            position: LatLng(lat, long),
            icon: myIcon,
        ),

      );
    });
ios flutter dart google-maps-sdk-ios
1个回答
0
投票

使用flutter_mapMapBox一起插入

我尝试使用Google Maps进行此操作,成功地在地图上呈现了动态Web资产,并且性能非常低。使用MapBox,它非常棒,您可以立即将小部件用作标记。

© www.soinside.com 2019 - 2024. All rights reserved.