Egeloen IvoryGoogleMapBundle ApI键错误

问题描述 投票:1回答:1

我正在使用egeloen's IvoryGoogleMapBundle,我已经运行了所有命令

$ composer require egeloen/google-map-bundle
$ composer require egeloen/serializer-bundle
$ composer require php-http/guzzle6-adapter
$ composer require php-http/httplug-bundle

我在appkernel中包含了以下三行代码。

new Ivory\GoogleMapBundle\IvoryGoogleMapBundle(),

  // Optionally
  new Ivory\SerializerBundle\IvorySerializerBundle(),
  new Http\HttplugBundle\HttplugBundle(),

另外,我也生成了API密钥。

不幸的是,places API无法正常工作,并在控制台中出现以下错误

" Google Maps JavaScript API warning: NoApiKeys

https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys

我在这里错过了什么?

php symfony google-maps
1个回答
0
投票

您是否已将捆绑包配置为使用API​​密钥?

ivory_google_map:
    map:
        api_key: yourapikey

请参阅documentation

© www.soinside.com 2019 - 2024. All rights reserved.