Geolocation field display using getRecord() in Salesforce using Lightning Web Component(LWC)
Geolocation Field: Sample code: HTML: <template> <lightning-card> <b>Account Geo Location information:</b><br/> Latitude is {latitude}<br/> Longitude is {longitude} </lightning-card> </template> JavaScript: import { LightningElement, api, wire ....