BossBey File Manager
PHP:
8.4.18
OS:
Linux
User:
kids
Root
/
home
/
kids
/
public_html
/
app
📤 Upload
📝 New File
📁 New Folder
Close
Editing: endereco.html
<html> <head> <title>Place Autocomplete</title> <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script> <link rel="stylesheet" type="text/css" href="css/style2.css" /> <script type="module" src="js/index.js"></script> </head> <body> <div class="pac-card" id="pac-card"> <div> <div id="title">Autocomplete search</div> <div id="type-selector" class="pac-controls"> <input type="radio" name="type" id="changetype-all" checked="checked" /> <label for="changetype-all">All</label> <input type="radio" name="type" id="changetype-establishment" /> <label for="changetype-establishment">establishment</label> <input type="radio" name="type" id="changetype-address" /> <label for="changetype-address">address</label> <input type="radio" name="type" id="changetype-geocode" /> <label for="changetype-geocode">geocode</label> <input type="radio" name="type" id="changetype-cities" /> <label for="changetype-cities">(cities)</label> <input type="radio" name="type" id="changetype-regions" /> <label for="changetype-regions">(regions)</label> </div> <br /> <div id="strict-bounds-selector" class="pac-controls"> <input type="checkbox" id="use-location-bias" value="" checked /> <label for="use-location-bias">Bias to map viewport</label> <input type="checkbox" id="use-strict-bounds" value="" /> <label for="use-strict-bounds">Strict bounds</label> </div> </div> <div id="pac-container"> <input id="pac-input" type="text" placeholder="Enter a location" /> </div> </div> <div id="map"></div> <div id="infowindow-content"> <span id="place-name" class="title"></span><br /> <span id="place-address"></span> </div> <!-- The `defer` attribute causes the callback to execute after the full HTML document has been parsed. For non-blocking uses, avoiding race conditions, and consistent behavior across browsers, consider loading using Promises. See https://developers.google.com/maps/documentation/javascript/load-maps-js-api for more information. --> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAki4atbA8ey0lMY4ByHeF8qaGWvQ8HlGM&callback=initMap&libraries=places&v=weekly" defer ></script> </body> </html>
Save
Cancel