public sealed class LatLng : IMessage<LatLng>, IEquatable<LatLng>, IDeepCloneable<LatLng>, IBufferMessage, IMessage
An object that represents a latitude/longitude pair. This is expressed as a
pair of doubles to represent degrees latitude and degrees longitude. Unless
specified otherwise, this must conform to the
<a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
standard</a>. Values must be within normalized ranges.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["The `LatLng` class represents a latitude/longitude pair using double values for degrees, adhering to the WGS84 standard."],["It implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, indicating its capabilities for message handling, equality checks, deep cloning, and buffer operations."],["The class provides constructors to create `LatLng` objects, either empty or based on another `LatLng` object."],["`LatLng` has properties for `Latitude` and `Longitude`, which store the respective degree values within their normalized ranges of \\[-90.0, +90.0] and \\[-180.0, +180.0]."],["The class contains methods for object comparison, deep cloning, merging with other LatLng objects, and calculating the message size in protocol buffer format, and writing to a coded stream."]]],[]]