当我将gmaps4rails脚本保存在application.html.erb中时,如何将gmaps4rails和google initAutocomplete回调脚本一起使用,如下所示:
<script src="//maps.google.com/maps/api/js?v=3.exp&key=[API_Key]&libraries=places"></script>
<script src="//cdn.rawgit.com/mahnunchik/markerclustererplus/master/dist/markerclusterer.min.js"></script>
<script src='//cdn.rawgit.com/printercu/google-maps-utility-library-v3-read-only/master/infobox/src/infobox_packed.js' type='text/javascript'></script>
在一个文件中,我要使用地址自动完成功能,该地址具有callback = initAutocomplete,如下所示:
<script src="https://maps.googleapis.com/maps/api/js?key=[API_KEY]&libraries=places&callback=initAutocomplete" async defer></script>
我无法将callback
放入application.html.erb
文件中。
它给了我Google api使用多次的错误,我可以理解为什么,但是却不知道如何使它们成为一个。任何帮助将不胜感激。