前提・実現したいこと
Google Maps Api を用いて、緯度経度を取得できるフォームを製作しています。
地図から緯度経度を取得することは出来たのですが、それらの値を<input>に設定することが出来ません。
その際に、以下のような問題が出たので質問させていただきました。
発生している問題・エラーメッセージ
Uncaught TypeError: Cannot set property 'defaultValue' of null
該当のソースコード
html
1<input type="hidden" name="lat" id="lat"> 2<input type="hidden" name="lng" id="lng"> 3<input type="hidden" name="location" id="location"> 4 5 <script> 6 function initMap() { 7 'use strict'; 8 9 let target = document.getElementById('target'); 10 let tokyo = {lat: 35.6812362000000, lng: 139.7671248000000}; 11 let marker; 12 13 let map = new google.maps.Map(target, { 14 center: tokyo, 15 zoom: 15 16 }); 17 18 let input = (document.getElementById('event-locationautocomplete')); 19 20 let autocomplete = new google.maps.places.Autocomplete(input); 21 autocomplete.bindTo('bounds', map); 22 23 let infowindow = new google.maps.InfoWindow(); 24 marker = new google.maps.Marker({ 25 map: map, 26 anchorPoint: new google.maps.Point(0, -30) 27 }); 28 29 autocomplete.addListener('place_changed', function() { 30 infowindow.close(); 31 marker.setVisible(false); 32 let place = autocomplete.getPlace(); 33 34 if (!place.geometry) { 35 window.alert("No details available for input: '" + place.name + "'"); 36 return; 37 } 38 39 if (place.geometry.viewport) { 40 map.fitBounds(place.geometry.viewport); 41 } else { 42 map.setCenter(place.geometry.location); 43 map.setZoom(15); 44 } 45 46 marker.setIcon( /** @type {google.maps.Icon} */ ({ 47 url: place.icon, 48 size: new google.maps.Size(70, 70), 49 origin: new google.maps.Point(0, 0), 50 anchor: new google.maps.Point(15, 35), 51 scaledSize: new google.maps.Size(35, 35) 52 })); 53 marker.setPosition(place.geometry.location); 54 marker.setVisible(true); 55 let item_Lat = place.geometry.location.lat(); 56 let item_Lng = place.geometry.location.lng(); 57 let item_Location = place.formatted_address; 58 59 alert("Lat= "+item_Lat+"_____Lang="+item_Lng+"_____Location="+item_Location); 60 61 document.getElementById('#lat').value = "item_Lat"; 62 document.getElementById('#lng').value = "item_Lng"; 63 document.getElementById('#location').value = "item_Locatio"; 64 65 let address = ''; 66 if (place.address_components) { 67 address = [ 68 (place.address_components[0] && place.address_components[0].short_name || ''), 69 (place.address_components[1] && place.address_components[1].short_name || ''), 70 (place.address_components[2] && place.address_components[2].short_name || '') 71 ].join(' '); 72 } 73 74 infowindow.setContent('<div><strong>' + place.name + '</strong><br>' + address); 75 infowindow.open(map, marker); 76 }); 77 } 78 </script> 79
試したこと
inputのvalueに設定する手前で、alertを用いて取得出来ているか確認。
値は取得できていた。
回答2件
あなたの回答
tips
プレビュー