我正在使用jquery.geocomplete.js在搜索地址时获取自动完成搜索。该应用程序是一个 ruby on rails 应用程序,这是我所做的:
- 添加
<script src="http://maps.googleapis.com/maps/api/js?libraries=places"> to the layouts before the addition of application.js
- Geocomplete javascript 到应用程序
添加
ready = -> $('#geocomplete').geocomplete(map: "#map_canvas") $(document).ready ready $(document).on "page:load", ready
瘦:
h1 Welcome form input#geocomplete type="text" placeholder="Type in an address" size="90" input#find type="button" value="find" #map_canvas
自动完成选项没有任何问题,但地图没有显示。如何让地图显示在这里?