简体   繁体   中英

Flutter google_maps_places dont show places after search

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")]);

我发现了问题:`(错误日志=>“您已经超出了此API的每日请求配额。如果您没有设置自定义的每日请求配额,请确认您的项目具有有效的结算帐户: http:// g。 co / dev / maps-no-account

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM