You are here

KMLFile.php in Geocoder 8.3

File

modules/geocoder_geofield/src/Geocoder/Provider/KMLFile.php
View source
<?php

namespace Drupal\geocoder_geofield\Geocoder\Provider;


/**
 * Provides a file handler to be used by 'kmlfile' plugin.
 */
class KMLFile extends AbstractGeometryProvider {

  /**
   * Geophp Type.
   *
   * @var string
   */
  protected $geophpType = 'kml';

  /**
   * {@inheritdoc}
   */
  public function getName() : string {
    return 'kmlfile';
  }

}

Classes

Namesort descending Description
KMLFile Provides a file handler to be used by 'kmlfile' plugin.