我正在使用Flutter开发Google Places API。我正在通过引用example进行工作。但是我在Google Places API类中遇到了
错误例如:
未定义的类“ GoogleMapsPlaces”。 尝试将名称更改为现有类的名称,或使用名称
创建一个类
我将dart文件中的flutter_google_places
导入为:
import 'package:flutter_google_places/flutter_google_places.dart';
但是,所有类仍然出现错误。
使用flutter_google_places
版0.2.3
。
答案 0 :(得分:2)
GoogleMapPlaces在不同的库中可用,而在flutter_google_places中不可用...
答案 1 :(得分:0)
您可以找到Google Place google_place的另一个软件包
var googlePlace = GooglePlace("Your-Key");
var result = await googlePlace.autocomplete.get("1600 Amphitheatre");
答案 2 :(得分:0)
您需要在main.dart中导入
import 'package:google_maps_webservice/places.dart';
。