0

Googleプレイスのオートコンプリートをレール形式で使用したいと考えています。Googleプレイスの検索オートコンプリートをレールアプリで使用

私はこの記事を、次の午前レールV5.1.1に

を使用しています:https://developers.google.com/maps/documentation/javascript/examples/places-searchbox

私のアプリケーションのレイアウトは、次のようにあります。

...lots of layout code 
    <% yield %> 

     <!-- this is to yield for additional page specific JS from other external sources --> 
     <%= yield :additional_page_js %> 

     <%= yield :additional_js %> 
</body> 

その後、私は旅/ショーと呼ばれるビューを持っています。 html.erb:

<div class="container"> 
<div class="col-xs-6"> 

<div class="col-xs-6"> 
<h4>Let's make a new leg</h4> 

<%= simple_form_for(leg, html: { class: 'form-horizontal' }) do |f| %> 
    <%= f.error_notification %> 
    <%= f.input :journey_id, as: :hidden %> 
    <%= f.input :name, label: 'Give your leg a name', error: 'A name is mandatory - name it!' , hint: 'Something friendly...' %> 
    <%= f.simple_fields_for :origin do |p| %> 
     <%= p.input :name , label: 'Origin', error: 'An origin is mandatory - where did you begin?' , hint: 'Where did you begin?', :input_html => { :id => "pac-input", :class => "controls" } %> 
    <% end %> 
    <%= f.simple_fields_for :destination do |n| %> 
     <%= n.input :name , label: 'Destination', error: 'A destination is mandatory - where did you end up?' , hint: 'Where did you end up?'%> 
    <% end %> 
    <%= f.button :submit , "Lets go!" %> 
<% end %> 

</div> 

<div class="col-xs-6"> 

    <div id="origin_map"></div> 

</div> 
</div> 

<%= content_for :additional_page_js do %> 
<%= javascript_include_tag "controllers/journeys/journeys" %> 
<% end %> 

<%= content_for :additional_js do %> 
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAP927IOgIj5GshStjMVfGTfMzHj2Dr1uo&libraries=places&callback=initMapAutocomplete"></script> 
<% end %> 

content_for 'additional_page_js' 収率は(journeys.jsある)は、以下の内容を有する:

function initMapAutocomplete() { 

     var map = new google.maps.Map(document.getElementById('origin_map'), { 
      center: {lat: -33.8688, lng: 151.2195}, 
      zoom: 13, 
      mapTypeId: 'roadmap' 
     }); 

     // Create the search box and link it to the UI element. 
     var input = document.getElementById('pac-input'); 
     var searchBox = new google.maps.places.SearchBox(input); 
     map.controls[google.maps.ControlPosition.TOP_LEFT].push(input); 

     // Bias the SearchBox results towards current map's viewport. 
     map.addListener('bounds_changed', function() { 
      searchBox.setBounds(map.getBounds()); 
     }); 

     var markers = []; 
     // Listen for the event fired when the user selects a prediction and retrieve 
     // more details for that place. 
     searchBox.addListener('places_changed', function() { 
      var places = searchBox.getPlaces(); 

      if (places.length == 0) { 
      return; 
      } 

      // Clear out the old markers. 
      markers.forEach(function(marker) { 
      marker.setMap(null); 
      }); 
      markers = []; 

      // For each place, get the icon, name and location. 
      var bounds = new google.maps.LatLngBounds(); 
      places.forEach(function(place) { 
      if (!place.geometry) { 
       console.log("Returned place contains no geometry"); 
       return; 
      } 
      var icon = { 
       url: place.icon, 
       size: new google.maps.Size(71, 71), 
       origin: new google.maps.Point(0, 0), 
       anchor: new google.maps.Point(17, 34), 
       scaledSize: new google.maps.Size(25, 25) 
      }; 

      // Create a marker for each place. 
      markers.push(new google.maps.Marker({ 
       map: map, 
       icon: icon, 
       title: place.name, 
       position: place.geometry.location 
      })); 

      if (place.geometry.viewport) { 
       // Only geocodes have viewport. 
       bounds.union(place.geometry.viewport); 
      } else { 
       bounds.extend(place.geometry.location); 
      } 
      }); 
      map.fitBounds(bounds); 
     }); 
     } 

content_for additional_js以下の含量を有する:

journeys.cssのCSSには、以下があります。

#description { 
     font-family: Roboto; 
     font-size: 15px; 
     font-weight: 300; 
     } 

     #infowindow-content .title { 
     font-weight: bold; 
     } 

     #infowindow-content { 
     display: none; 
     } 

     #map #infowindow-content { 
     display: inline; 
     } 

     .pac-card { 
     margin: 10px 10px 0 0; 
     border-radius: 2px 0 0 2px; 
     box-sizing: border-box; 
     -moz-box-sizing: border-box; 
     outline: none; 
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); 
     background-color: #fff; 
     font-family: Roboto; 
     } 

     #pac-container { 
     padding-bottom: 12px; 
     margin-right: 12px; 
     } 

     .pac-controls { 
     display: inline-block; 
     padding: 5px 11px; 
     } 

     .pac-controls label { 
     font-family: Roboto; 
     font-size: 13px; 
     font-weight: 300; 
     } 

     #pac-input { 
     background-color: #fff; 
     font-family: Roboto; 
     font-size: 15px; 
     font-weight: 300; 
     margin-left: 12px; 
     padding: 0 11px 0 13px; 
     text-overflow: ellipsis; 
     width: 400px; 
     } 

     #pac-input:focus { 
     border-color: #4d90fe; 
     } 

     #title { 
     color: #fff; 
     background-color: #4d90fe; 
     font-size: 25px; 
     font-weight: 500; 
     padding: 6px 12px; 
     } 
     #target { 
     width: 345px; 
     } 

ページが読み込まれるとき - 入力フィールドが表示されない - 実際には生成されていないまったくHTML:

<%= p.input :name , label: 'Origin', error: 'An origin is mandatory - where did you begin?' , hint: 'Where did you begin?', :input_html => { :id => "pac-input", :class => "controls" } %> 

は私はjavascriptのエラーを取得していない、と私は、サーバーのログには、レールのエラーを取得していません。

journeys.jsからjavascriptを削除した場合、元のフォームフィールドは正常に動作しています。私は、フィールドが「消える」する原因となっている行はjourneys.jsからこの行であると信じて:

var searchBox = new google.maps.places.SearchBox(input); 

誰かが私はこのGoogleプレイス作業オートコンプリートフィールドを検索する得るのを助けることができますしてください!

+0

フロントエンドについてよく分かりませんが、 'additional_page_js'と' additional_js'を削除するには 'div'が必要ですか? –

+0

そうは思わない? js自体がページにロードされます。 – RenegadeAndy

+0

ああ...大丈夫.. –

答えて

0

問題は、2つのコンポーネントがあることが判明しました。

1 /マップdivにサイズがないため、表示されませんでした。 htmlを変更してサイズを指定すると、レンダリングされたマップがロードされます。

<div id="origin_map" style='width: 100%; height: 30rem;'></div> 

2 /次に入力フィールドが消えていないことがわかりましたが、代わりに地図の上に移動しました。この再配置を行う行をコメントアウトすることで、私は自分のフォームをgoogle places autocompleteを使って完全に修正することができました。

map.controls[google.maps.ControlPosition.TOP_LEFT].push(input); 
関連する問題