Class describing position of the camera. More...
Public Member Functions | |
| Camera (this.point, this.zoom, this.rotation, this.tilt) | |
| Default constructor. | |
Public Attributes | |
| Point | point |
| point the camera is looking at Point | |
| double | zoom |
| zoom level. | |
| double | rotation |
Map azimuth in degrees: angle between Location North (top of the image) and the direction of interest on the view plane, in the range [0, 360). | |
| double | tilt |
| Camera tilt in degrees. 0 means vertical downward (map seen from above). Positive values tilt the eye toward the horizon; the renderer clamps tilt to device limits when applying. | |
Class describing position of the camera.
Referenced from LocationWindow.
Dart code snippet:
Definition at line 26 of file camera.dart.
| Camera.Camera | ( | this. | point, |
| this. | zoom, | ||
| this. | rotation, | ||
| this. | tilt ) |
Default constructor.
| Point Camera.point |
point the camera is looking at Point
Definition at line 32 of file camera.dart.
| double Camera.rotation |
Map azimuth in degrees: angle between Location North (top of the image) and the direction of interest on the view plane, in the range [0, 360).
Definition at line 41 of file camera.dart.
| double Camera.tilt |
Camera tilt in degrees. 0 means vertical downward (map seen from above). Positive values tilt the eye toward the horizon; the renderer clamps tilt to device limits when applying.
Definition at line 46 of file camera.dart.
| double Camera.zoom |
zoom level.
Definition at line 36 of file camera.dart.