Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <input id="autocomplete" size="50" placeholder="Enter your address" type="text"></input>
  2.  
  3. function initialize() {
  4. var options = {componentRestrictions: {country: 'uk'}, types: ['geocode']}
  5. new google.maps.places.Autocomplete((document.getElementById('autocomplete')), options);
  6. }
  7.  
  8. initialize();
Add Comment
Please, Sign In to add comment