GeoJsonFile.php in Geocoder 8.2
Same filename in this branch
Same filename and directory in other branches
File
modules/geocoder_geofield/src/Geocoder/Provider/GeoJsonFile.phpView source
<?php
namespace Drupal\geocoder_geofield\Geocoder\Provider;
/**
* Provides a file handler to be used by 'geojsonfile' plugin.
*/
class GeoJsonFile extends AbstractGeometryProvider {
/**
* Geophp Type.
*
* @var string
*/
protected $geophpType = 'geojson';
/**
* {@inheritdoc}
*/
public function getName() : string {
return 'geojsonfile';
}
}
Classes
Name | Description |
---|---|
GeoJsonFile | Provides a file handler to be used by 'geojsonfile' plugin. |