2

ご挨拶と併せて、フラッター マップ メーカーで InfoWindow を表示したり、できれば Google マップでメーカーの横に表示されるフローティング コンテナを作成したりできたかどうかお聞きしたいと思います。

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");
                            },
                          )
                      ),
                    ),

いつもお世話になっております。

4

2 に答える 2