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