gertvdb/location

Provide a standard way to store a location

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:drupal-module

8.1.2 2020-10-30 07:48 UTC

This package is auto-updated.

Last update: 2024-02-29 03:43:30 UTC


README

Provide a standard way to store a location and work with it.

Usage

Initialising the classes.


use Drupal\location\Location;
use Drupal\location\LocationCollection;
use Drupal\country\Country;
use Drupal\continent\Continent;

$country = new Country('US');
$continent = new Continent('NA');
$coordinate = new Coordinate(37.419857, -122.078827);

$location = new Location(
  'Google Inc.',
  'Second floor',
  'Amphitheatre Parkway',
  1600,
  'B2',
  '94043',
  'Mountain View',
  'San Francisco',
  'California',
  $country,
  $continent,
  $coordinate
);
$collection = new LocationCollection([$location]);

Release notes

1.0.0

  • Basic setup of the module.
  • Provide location and location collection class.