Javascript Autocomplete Location Tutorial - Supercoders | Web Development and Design | Tutorial for Java, PHP, HTML, Javascript Javascript Autocomplete Location Tutorial - Supercoders | Web Development and Design | Tutorial for Java, PHP, HTML, Javascript

Post Top Ad

Post Top Ad

Monday, April 30, 2018

sUPERCODER%2BLOGO

Javascript Autocomplete Location Tutorial

Javascript Autocomplete Location Tutorial

map-js

Sometimes we need a autocomplete Textfield in Web Development where we enter only some values then address will show suggestion now we can implement this Types of Input fields.?

Lets Start Today!.

Step  1 : Visit Google Developer Console .



google-maps-developer


Step 2 : Select  "Google Places API JavaScript Library"

     LinkGoogle Place Api
google-place-library-js


Step 3 : Click on Get Key Then .


google-map-key

Step 4 : Create a new project

create-project

Step 5 : Copy Key .

google-place-key

Now Let's Start Our Code . 

index.html

 
<!DOCTYPE html>
<html>
<head>
 <title>Google Place</title>
</head>
<body>
 <input type="text" placeholder="Searc place" id="autocomplete">

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places&key=YOUR_API_KEY"></script>
<script type="text/javascript">

 //===================function for set input to google auto complete===================
 function AutoComplete() {
       var input = document.getElementById('autocomplete');
            new google.maps.places.Autocomplete(input);
 }

     //=============Call  function when our page load completes====================
     google.maps.event.addDomListener(window, 'load', AutoComplete);

</script>
</body>
</html>
 
 
output
 Thanks!

No comments:

Post a Comment

Post Top Ad