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"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-02 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."]]],[]]