CoordinateBounds class

A rectangular area as measured on a two-dimensional map projection.

Constructors

CoordinateBounds({required Map<String?, Object?> southwest, required Map<String?, Object?> northeast, required bool infiniteBounds})

Properties

hashCode int
The hash code for this object.
read-onlyinherited
infiniteBounds bool
If set to true, an infinite (unconstrained) bounds covering the world coordinates would be used. Coordinates provided in southwest and northeast fields would be omitted and have no effect.
read / write
northeast Map<String?, Object?>
Coordinate at the northeast corner. Note: setting this field with invalid values (infinite, NaN) will crash the application.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
southwest Map<String?, Object?>
Coordinate at the southwest corner. Note: setting this field with invalid values (infinite, NaN) will crash the application.
read / write

Methods

encode() Object
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

decode(Object result) CoordinateBounds