我正在使用Google地图。我需要实现一个自定义信息窗口...看起来像这样,
https://github.com/gsanthosh91/Google-Map-Floating-Info-Window-Uber/blob/master/screenshot.png
但是我没有找到任何类似此自定义信息窗口的教程设计。
答案 0 :(得分:0)
我认为您可以使用
body: GoogleMap(
markers: _markers,
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: _center,
zoom: 20.0,
),
),
来自google_maps_flutter.dart的Marker类中的infoWindow
Marker(
markerId: markerId,
position: _center,
infoWindow: InfoWindow(
title: 'MyLocation',
snippet: 'Here is an Info Window Text on a Google Map',
),
),
};
也尝试添加自定义窗口小部件。