You are here

MaxMind.php in Geocoder 8.3

File

src/Plugin/Geocoder/Provider/MaxMind.php
View 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 {

}

Classes

Namesort descending Description
MaxMind Provides a MaxMind geocoder provider plugin.