除了问候你,我想问你是否有人能够在颤振地图制造商中显示一个信息窗口,或者创建一个浮动的容器,以便它出现在制造商旁边,如果可能的话在谷歌地图中。
new Marker
(
width: 45.0,
height: 45.0,
point: new LatLng(-25.963678, -51.240657),
builder: (ctx) =>
new Container //here infoWindow or Float Container
(
//child: new FlutterLogo(),
child: IconButton
(
icon: Icon(Icons.location_on),
color: Colors.blue,
iconSize: 45.0,
tooltip: "prueba",
onPressed: ()
{
print("test press");
},
)
),
),
非常感谢您一如既往的帮助。