在網站https://gearbottle.com/我有一個問題,地圖會加載我的地理位置(啓用地理位置查看),然後加載所有結果(整個世界) - 我需要這個留在地理定位而不是跳轉到整個地圖。谷歌地圖API警告:SensorNotRequired
檢查出控制檯後,我看到「谷歌地圖API警告:SensorNotRequired //developers.google.com/maps/documentation/javascript/error-messages#sensor-not-required」,然後下拉的對象等....挖了一下我碰到下面的腳本仍然有傳感器到位後:
if(ddp('google_places_api')) { if(ddp('google_places_api') != '') { wp_register_script('google_maps_api', 'https://maps.googleapis.com/maps/api/js?key='.ddp('google_places_api').'&sensor=false&libraries=places'); } }
\t \t else { wp_register_script('google_maps_api', 'https://maps.googleapis.com/maps/api/js?'); }
\t \t
\t }
\t $google_places_url = 'https://maps.googleapis.com/maps/api/place/autocomplete/xml?key='.ddp('google_places_api').'&sensor=false&input='.$fields[$field->post_name].'&types=(regions)';
$reference_url = 'https://maps.googleapis.com/maps/api/place/details/xml?key='.ddp('google_places_api').'&sensor=false&reference='.$place_reference;
....但我在每個腳本什麼來取代 「傳感器」 部分,或者如果這甚至事項一無所知 - 我真的只需要地圖停止跳躍,這就是它。
這是一個主題的舊版本已被重建(由選擇購買) - 原來的開發者不再支持,所以我試圖解決自己的事情。
刪除
&sensor=false
取代'&傳感器= FALSE'什麼也沒有,虛無縹緲。拉鍊,零長度字符串:p –哈哈 - 好吧,讓我給出一個鏡頭。 – Nick
將擺脫警告 - 不知道你的問題 –