gpt4 book ai didi

flutter - 是否可以在 google_maps_flutter 的 InfoWindow 中处理点击事件?

转载 作者:IT王子 更新时间:2023-10-29 06:36:59 24 4
gpt4 key购买 nike

我正在使用 google_maps_flutter 向谷歌地图添加标记我想在用户点击 InfoTextWindow 时显示一个新屏幕。

我似乎无法找到一种方法来做到这一点。有人知道吗?

我添加标记的方式是:

mapController.addMarker(MarkerOptions(
position: LatLng(sr.lat, sr.lon),
icon: BitmapDescriptor.defaultMarker,
infoWindowText: InfoWindowText(
sr.serviceName,
sr.description,
),
));

最佳答案

现在有一种新方法可以做到这一点,基本上您应该在InfoWindow 实现中实现onTap。看这个例子:

Marker(
markerId: MarkerId("your marker id"),
position: position,
icon: BitmapDescriptor.defaultMarker,
onTap: _onMarkerTapped,
infoWindow: InfoWindow(
title: t.name,
onTap: () {
// InfoWindow clicked
})
)

关于flutter - 是否可以在 google_maps_flutter 的 InfoWindow 中处理点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54371168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com