Geonames.php in Geocoder 8.2
Same filename and directory in other branches
Namespace
Drupal\geocoder\Plugin\Geocoder\ProviderFile
src/Plugin/Geocoder/Provider/Geonames.phpView source
<?php
namespace Drupal\geocoder\Plugin\Geocoder\Provider;
use Drupal\geocoder\ProviderUsingHandlerWithAdapterBase;
/**
* Provides a Geoip geocoder provider plugin.
*
* @GeocoderProvider(
* id = "geonames",
* name = "Geonames",
* handler = "\Geocoder\Provider\Geonames",
* arguments = {
* "username" = NULL,
* "locale" = NULL
* }
* )
*/
class Geonames extends ProviderUsingHandlerWithAdapterBase {
}