LatLng constructor

LatLng({
  1. double? latitude,
  2. double? longitude,
})

An object representing a latitude/longitude pair.

This is expressed as a pair of doubles representing degrees latitude and degrees longitude.

Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.

Implementation

LatLng({
  this.latitude,
  this.longitude,
});