Formatted Address
lightning-formatted-address
Displays a formatted address with a link to the given location on Google Maps. The link is opened in a new tab. A static map can be displayed with the address for better context.
For Use In
Lightning Experience, Experience Builder Sites, Salesforce Mobile App, Lightning Out (Beta), Standalone Lightning App
A lightning-formatted-address component shows addresses in a format and field order
that's determined by the user's Salesforce locale.
Specify a valid address using attributes for street, city, country, province, and
postal-code.
This example specifies an address.
The output looks like this in the en-US locale.
1 Market St.
San Francisco, CA 94105
US
By default, the address renders as a link that
opens the given location in Google Maps in a new tab. The link
follows the format https://www.google.com/maps/?q=your+address.
In the example, the link corresponds to
https://www.google.com/maps/?q=121%20Spear%20St.%0ASan%20Francisco,%20CA%2094105%0AUS.
Specify the disabled attribute to show the address in plain text
without a link.
You can provide the latitude and longitude attributes in addition to
the address fields. This configuration enables faster map rendering by avoiding the
geocode processing that's required for street addresses on Google Maps.
The formatted address shows the street address fields,
but the link URL uses the latitude and longitude for Google Maps.
This example specifies an address and uses latitude and longitude for mapping.
The link URL with latitude and longitude follows the format
https://www.google.com/maps/?q=37.792179,-122.392735.
Use the show-static-map attribute to show a map with your address.
The address and the static map are both linked to Google Maps.
By default, each line of address uses the slds-truncate class.
To remove address line truncation, set variant="plain". This configuration renders each address line without truncating it.