CameraPosition class

지도 카에라의 위치를 나타낸다. target에서 보이는 카메라 화면은 가진 위,경도와 zoom레벨, tilt각도, 그리고 bearing의 값들을 모두 종합한다.

Constructors

CameraPosition({double bearing = 0.0, required LatLng target, double tilt = 0.0, double zoom = 15.0})
const

Properties

bearing double
카메라 회전 각도. 북쪽에서 시계 방향으로의 회전량.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
target LatLng
카메라가 가르키는 위치의 위,경도값
final
tilt double
기본값으로 최소값인 0.0을 가진다. 지도의 기울기 값. 0의 값일때 카메라는 땅을 바로 위에서 바라본다.
final
zoom double
기본값으로 0을 가진다. 지원되는 zoom level 은 장치나 지도 데이터에 따라 다른 범위를 가진다.
final

Methods

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

Operators

operator ==(dynamic other) bool
The equality operator.
override

Static Methods

fromMap(dynamic json) CameraPosition?