LatLngBounds class

북동쪽 위, 경도와 남서쪽 위,경도로 만들어진 사각형 영역이다.

Constructors

LatLngBounds({required LatLng southwest, required LatLng northeast})
LatLngBounds.fromLatLngList(List<LatLng> latLngs)
LatLng 의 배열로 LatLngBounds 를 만드는 factory
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
json List<List<double>>
no setter
northeast LatLng
The northeast corner of the rectangle.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
southwest LatLng
The southwest corner of the rectangle.
final

Methods

contains(LatLng point) bool
Returns whether this rectangle contains the given LatLng.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object o) bool
The equality operator.
override

Static Methods

fromList(dynamic json) LatLngBounds?