1 /**
  2  * Abstract; not implemented. There is no explicit constructor; this class
  3  * merely serves to document the representation used by {@link pv.Geo.scale}.
  4  *
  5  * @class Represents a pair of geographic coordinates.
  6  *
  7  * @name pv.Geo.LatLng
  8  * @see pv.Geo.scale
  9  */
 10 
 11 /**
 12  * The <i>latitude</i> coordinate in degrees; positive is North.
 13  *
 14  * @type number
 15  * @name pv.Geo.LatLng.prototype.lat
 16  */
 17 
 18 /**
 19  * The <i>longitude</i> coordinate in degrees; positive is East.
 20  *
 21  * @type number
 22  * @name pv.Geo.LatLng.prototype.lng
 23  */
 24