The Laravel Geonames API package provides an easy way to integrate the Geonames API into your Laravel application. This package enables developers to effortlessly interact with the Geonames API to retrieve geographic data such as cities, countries, coordinates, time zones, and other location-based information
plutuss/laravel-geonames-api is a Laravel package for the laravel geonames api package provides an easy way to integrate the geonames api into your laravel application. this package enables developers to effortlessly interact with the geonames api to retrieve geographic data such as cities, countries, coordinates, time zones, and other location-based information.
It currently has 1 GitHub stars and 86 downloads on Packagist (latest version 0.1.3).
Install it with composer require plutuss/laravel-geonames-api.
Discover more Laravel packages by plutuss
or browse all Laravel packages to compare alternatives.
Last updated
[!NOTE] The Laravel Geonames API package provides an easy way to integrate the Geonames API into your Laravel application. This package enables developers to effortlessly interact with the Geonames API to retrieve geographic data such as cities, countries, coordinates, time zones, and other location-based information.
composer require plutuss/geo-names-laravel
php artisan vendor:publish --provider="Plutuss\GeoNames\Providers\GeoNamesServiceProvider"
# .env
GEO_NAMES_USERNAME=user_name
$response = GeoName::postalCodeSearchJSONFromName('city_name');
$response = GeoName::setPostalCode(6600)
->setCountryCode('CH')
->postalCodeSearchJSONFromName('city_name');
// OR
$response = GeoName::setOption([
'country' => 'CH',
])->postalCodeSearchJSONFromName('city_name');
$response = GeoName::postalCodeSearchJSONFromPostCode(6600);
$response = GeoName::setCountryCode('CH')
->postalCodeSearchJSONFromPostCode(6600);
// OR
$response = GeoName::setOption([
'country' => 'CH',
])->postalCodeSearchJSONFromPostCode('6600');
setCountryCode(string $countryCode): static;
setPostalCode(int $value): static;
setPostalCodeStartsWith(string $value): static;
setPlaceName(string $value): static;
setPlaceNameStartsWith(string $value): static;
setCountry(string $value): static;
setCountryBias(string $value): static;
setMaxRows(int $value): static;
setStyle(string $value): static;
setOperator(string $value): static;
setCharset(string $value): static;
setIsReduced(bool $value): static;
setEast(float $value): static;
setWest(float $value): static;
setNorth(float $value): static;
setSouth(float $value): static;
setLatitude(string $value): static;
setLongitude(string $value): static;
setRadius(int $value): static;
setOption(array $params): static;
searchJSON(string $country): JsonResponse|array|Collection;
postalCodeSearchJSONFromPostCode(int $postalCode, int $radius = 5, int $maxRows = 10): JsonResponse|array|Collection;
postalCodeSearchJSONFromName(string $name, int $radius = 5, int $maxRows = 10): JsonResponse|array|Collection;
findNearbyPostalCodes(int $lat, int $lng): JsonResponse|array|Collection;
postalCodeCountryInfo(): JsonResponse|array|Collection;
findNearbyJSON(int $lat, int $lng): JsonResponse|array|Collection;
latitude(): mixed;
getCollectionData(): Collection;
getArrayData(): array;
longitude(): mixed;
placeName(): mixed;
postalCode(): mixed;
countryCode(): mixed;
region(): mixed;
land(): mixed;
// The getNestedValue() method retrieves a value
// from a deeply nested array using "dot" notation
// $response->getNestedValue('key.array')
getNestedValue($path, $default = null): mixed;