Я попытался найти близлежащие места и отобразить их как маркеры на картах Google. Вот как выглядит код, но он не показывает маркер и не выдает мне ошибку>
const kGoogleApiKey = "******-******************-*******";
GoogleMapsPlaces _places = GoogleMapsPlaces(apiKey: kGoogleApiKey);
var markers = List<Marker>();
final location = Location(currentLocation.latitude, currentLocation.longitude);
final result = await _places.searchNearbyWithRadius(location, 25000,type: "resturant");
setState(() {
if (result.status == "OK") {
this.places = result.results;
result.results.forEach((f) {
Marker marker = Marker(
markerId: MarkerId(f.name),
draggable: false,
infoWindow: InfoWindow(title: f.name, snippet: f.vicinity),
position: LatLng(f.geometry.location.lat, f.geometry.location.lng)
);
markers.add(marker);
});
}