I tried use google maps places to get lat/lng after searching to a places, with help the autoComplete function.
How can i solve this problem?
import 'package:flutter/material.dart';
import 'package:flutter_google_places/flutter_google_places.dart';
import 'package:google_maps_webservice/places.dart';
import 'package:geocoder/geocoder.dart';
// Google Api Key
const kGoogleApiKey = "....";
// to get places detail (lat/lng)
GoogleMapsPlaces _places = GoogleMapsPlaces(apiKey: kGoogleApiKey);
class PlaceSearchPage extends StatelessWidget {
final Color primaryColor, primaryColorAccent;
PlaceSearchPage({Key key, this.primaryColor, this.primaryColorAccent})
: super(key: key);
@override
Widget build(BuildContext context) => Scaffold(
backgroundColor: Colors.white,
body: Container(
child: Column(children: <Widget>[
TextField(
onSubmitted: (s) async {
Prediction p = await PlacesAutocomplete.show(
context: context,
apiKey: kGoogleApiKey,
mode: Mode.overlay, // Mode.fullscreen
language: "de",
components: [new Component(Component.country, "de"), new Component(Component.country, "en")]);
I found the problem :`( the error log => "You have exceeded your daily request quota for this API. If you did not set a custom daily request quota, verify your project has an active billing account: http://g.co/dev/maps-no-account"