我创建了一个应用程序,当您在地图中点击时,它会在 Google 地图中显示一个自定义标记,但我找不到更改标记大小的方法......有人知道我该怎么做吗?
这是 m 代码的一部分:
createMarker(context) {
if (customIcon == null) {
ImageConfiguration configuration = createLocalImageConfiguration(context);
BitmapDescriptor.fromAssetImage(configuration, 'assets/Boot-Pfeil2.png')
.then((icon) {
setState(() {
customIcon = icon;
});
});
}
}
Marker m = Marker(
markerId: MarkerId('1'),
icon: customIcon,
position: cordinate);
setState(() {
markers.add(m);
});