In this tutorial you will learn about the Laravel 9 Google Autocomplete Address Tutorial and its application with practical example.
In this Laravel 9 Google Autocomplete Address Example Tutorial, I’ll show you how to integrate Address or location Autocomplete using Google Autocomplete in laravel 9. In this tutorial you will learn to implement google autocomplete in laravel 9. In this article I will guide you through the integration of google autocomplete in laravel 9.
Google Autocomplete
Google autocomplete widget is used to display suggestions for places, address and location as soon as the user starts typing in the given input box.
Laravel 9 Google Autocomplete Address Tutorial
In this laravel 9 google autocomplete tutorial I’ll demonstrate you step by step process to integrate google autocomplete in laravel 9. Please follow the instructions given below:
- Install Laravel 9
- Get Api Key From Google
- Add Route
- Generate Controller by Command
- Create Blade View
- Run Development Server
- Test This App.
Install Laravel 9
First of all we need to create a fresh laravel project, download and install Laravel 9 using the below command
1 |
composer create-project --prefer-dist laravel/laravel blog |
Get Api Key From Google
Now, we need to get Google API key to enable the communication between client and Google server. Now follow the instructions given below to get Google API Key:
- Visit Google Cloud Platform.
- Click on the project dropdown at the top to create the project.
- Click APIs & Services > Credentials.
- Now, click on Create Credentials > API key.
- Copy google API and store in some text file.
- Now we need to enable few services, so click on Credentials > “Enable APIs and Services”, additionally enable “Maps JavaScript API” and “Places API” services.
Add Route
After this, we need to define routes in “routes/web.php” file. Lets open “routes/web.php” file and add the following routes in it.
routes/web.php
1 2 |
use App\Http\Controllers\GoogleController; Route::get('auto-complete', [GoogleController::class, 'index']); |
Generate Controller by Command
Now, lets create a controller named GoogleController using command given below –
1 |
php artisan make:controller GoogleController |
After successfully create controller go to app/controllers/GoogleController.php and put the following code :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class GoogleController extends Controller { // ---------------- [ Load View ] ---------------- public function index(Request $request) { return view("auto-complete"); } } |
Create Blade view
Now, we will create a blade view file. Go to app/resources/views and create one file name auto-complete.blade.php :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<!doctype html> <html lang="en"> <head> <title>Google Autocomplete Address Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="crossorigin="anonymous"></script> </head> <body> <div class="container mt-5"> <div class="row"> <div class="col-xl-6 col-lg-6 col-md-8 col-sm-12 col-12 m-auto"> <div class="card shadow"> <div class="card-header bg-primary"> <h5 class="card-title text-white">Laravel Google Autocomplete Address</h5> </div> <div class="card-body"> <div class="form-group"> <label for="autocomplete"> Location/City/Address </label> <input type="text" name="autocomplete" id="autocomplete" class="form-control" placeholder="Select Location"> </div> <div class="form-group" id="lat_area"> <label for="latitude"> Latitude </label> <input type="text" name="latitude" id="latitude" class="form-control"> </div> <div class="form-group" id="long_area"> <label for="latitude"> Longitude </label> <input type="text" name="longitude" id="longitude" class="form-control"> </div> </div> <div class="card-footer"> <button type="submit" class="btn btn-success"> Submit </button> </div> </div> </div> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> </body> </html> |
Add Autocomplete Script.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
{{-- javascript code --}} <script src="https://maps.google.com/maps/api/js?key=AIzaSyDxTV3a6oL6vAaRookXxpiJhynuUpSccjY&libraries=places&callback=initAutocomplete" type="text/javascript"></script> <script> $(document).ready(function() { $("#lat_area").addClass("d-none"); $("#long_area").addClass("d-none"); }); </script> <script> google.maps.event.addDomListener(window, 'load', initialize); function initialize() { var input = document.getElementById('autocomplete'); var autocomplete = new google.maps.places.Autocomplete(input); autocomplete.addListener('place_changed', function() { var place = autocomplete.getPlace(); $('#latitude').val(place.geometry['location'].lat()); $('#longitude').val(place.geometry['location'].lng()); // --------- show lat and long --------------- $("#lat_area").removeClass("d-none"); $("#long_area").removeClass("d-none"); }); } </script> |
Run Development Server
Now we are ready to run our example so lets start the development server using following artisan command –
1 |
php artisan serve |
Now, open the following URL in browser to see the output –
1 |
http://localhost:8000/auto-complete |