Dart Documentationdartkart.geo

dartkart.geo library

The library dartkart.geo provides classes for geodetic coordinates, for coordinate systems and for the transformation between coordinate systems (projections).

Functions

bool isValidLon(num lon) #

true if lon is a valid longitude in the range -180..180

bool isValidLon(num lon) => lon >= -180 && lon <= 180;

bool isValidLat(num lat) #

true if lat is a valid latitude in the range -90..90

bool isValidLat(num lat) => lat >= -90 && lat <= 90;

Abstract Classes

Classes