MaxMind.php in Geocoder 8.3
Same filename and directory in other branches
Namespace
Drupal\geocoder\Plugin\Geocoder\ProviderFile
src/Plugin/Geocoder/Provider/MaxMind.phpView source
<?php
namespace Drupal\geocoder\Plugin\Geocoder\Provider;
use Drupal\geocoder\ConfigurableProviderUsingHandlerWithAdapterBase;
/**
* Provides a MaxMind geocoder provider plugin.
*
* @GeocoderProvider(
* id = "maxmind",
* name = "MaxMind",
* handler = "\Geocoder\Provider\MaxMind\MaxMind",
* arguments = {
* "apiKey" = "",
* "service" = "f",
* }
* )
*/
class MaxMind extends ConfigurableProviderUsingHandlerWithAdapterBase {
}