How to get latitude and longitude from address in Codeigniter 4

How to get latitude and longitude from address in Codeigniter 4

If you need to get latitude and longitude from an address in PHP Codeigniter. Google has provided API that names Google geocode API. In this tutorial, you will use this API and get latitude and longitude from the address in PHP Codeigniter.

So, In this tutorial, you learn how to get latitude and longitude from an address without showing google maps in PHP Codeigniter.

Before you start, You need to get an API key before you can make calls to the Google Maps Geocoding service.

First, you will have to visit: https://cloud.google.com/maps-platform/?_ga=2.27293823.277869946.1577356888-568469380.1576660626#get-started and get the API key.

Steps to get an API key From Google Console:

  1. Visit the Google Cloud Platform Console.
  2. Click the project drop-down and select or create the project for which you want to add an API key.
  3. Click the menu button  and select APIs & Services > Credentials.
  4. On the Credentials page, click Create credentials > API key.
    The API key created dialog displays your newly created API key.
  5. Click Close.
    The new API key is listed on the Credentials page under API keys.
    (Remember to restrict the API key before using it in production.)

How to get latitude and longitude from address in Codeigniter 4

Follow the below steps and get Latitude and Longitude From Address in Codeigniter using the google geocode API:

  • Step 1 – Use google API with key
  • Step 2 – Create functions to get address

Step 1 – Use google API with key

https://maps.google.com/maps/api/geocode/json?address='.$address.'&key=your_api_key

Step 2 – Create functions to get address

Next, you need to create two functions in the first is getlocation() and second one is get_longitude_latitude_from_adress().

Explanation of created functions

  • geolocation():- This function takes an address as input and internally utilizes the get_longitude_latitude_from_address() function. By invoking get_longitude_latitude_from_address() with the provided address, it retrieves the corresponding latitude and longitude values, which are then returned by the geolocation() function.
  • get_longitude_latitude_from_address():- This function takes an address as input and utilizes the Google Geocoding API to retrieve the latitude and longitude coordinates associated with the given address.
public function getlocation()
{
    $address = "London united state";
    $array  = $this->get_longitude_latitude_from_adress($address);
    $latitude  = round($array['lat'], 6);
    $longitude = round($array['long'], 6);           
}

function get_longitude_latitude_from_adress($address){
 
$lat =  0;
$long = 0;

 $address = str_replace(',,', ',', $address);
 $address = str_replace(', ,', ',', $address);

 $address = str_replace(" ", "+", $address);
  try {
 $json = file_get_contents('https://maps.google.com/maps/api/geocode/json?address='.$address.'&key=your_api_key');
 $json1 = json_decode($json);

 if($json1->{'status'} == 'ZERO_RESULTS') {
 return [
     'lat' => 0,
     'lng' => 0
    ];
 }

 if(isset($json1->results)){
   
    $lat = ($json1->{'results'}[0]->{'geometry'}->{'location'}->{'lat'});
    $long = ($json1->{'results'}[0]->{'geometry'}->{'location'}->{'lng'});
  }
  } catch(exception $e) { }
 return [
 'lat' => $lat,
 'lng' => $long
 ];
}

Note:- You can also place these functions in Codeigniter helper and call the function where you want to get latitude and longitude from address.

Conclusion

codeigniter get latitude and longitude from address example, you have learned how to get latitude and longitude from address without showing google map in codeigniter 4 using google apis.

Recommended Codeigniter Posts

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *