PHP code example of jeroen / simple-geocoder
1. Go to this page and download the library: Download jeroen/simple-geocoder library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jeroen / simple-geocoder example snippets
interface Geocoder {
/**
* Returns null when no result is found or when an error occurs.
* @return LatLongValue|null
*/
public function geocode( string $address );
}