【发布时间】:2020-08-07 17:40:08
【问题描述】:
我有一个 SearchMapPlaceWidget,它根据我的搜索关键字向我推荐地点。我想将相机动画到我点击的建议位置。我该怎么做?
这是我在 Flutter 中的 search_map_place 包中使用的 SearchMapPlaceWidget。
SearchMapPlaceWidget(
apiKey: myApiKey,
onSearch: (Place place) async {
try{
final geolocation = await place.geolocation;
print(geolocation);
}catch(e){
print(e);
}
},
),
【问题讨论】:
标签: google-maps flutter google-places-api google-geolocation