You are here

public function GoogleMapsDirections::getAddressUrl in Address Map (& Directions) Link 8

Gets the map link url from an address.

Parameters

\Drupal\address\AddressInterface $address: The address.

Return value

\Drupal\Core\Url The Url.

Overrides MapLinkBase::getAddressUrl

File

src/Plugin/MapLink/GoogleMapsDirections.php, line 28

Class

GoogleMapsDirections
Provides a Google Maps Directions link type.

Namespace

Drupal\address_map_link\Plugin\MapLink

Code

public function getAddressUrl(AddressInterface $address) {
  return Url::fromUri('https://google.com/maps', [
    'query' => [
      'daddr' => $this
        ->addressString($address),
    ],
  ]);
}