FlutterEarthGlobeController constructor
FlutterEarthGlobeController({
- ImageProvider<
Object> ? surface, - ImageProvider<
Object> ? nightSurface, - ImageProvider<
Object> ? background, - double rotationSpeed = 0.2,
- bool isZoomEnabled = true,
- double zoom = 1,
- double maxZoom = 1.6,
- double minZoom = 0.1,
- bool isRotating = false,
- bool isBackgroundFollowingSphereRotation = false,
- ImageConfiguration surfaceConfiguration = const ImageConfiguration(),
- ImageConfiguration nightSurfaceConfiguration = const ImageConfiguration(),
- ImageConfiguration backgroundConfiguration = const ImageConfiguration(),
- SphereStyle sphereStyle = const SphereStyle(),
- bool isDayNightCycleEnabled = false,
- double sunLongitude = 0.0,
- double sunLatitude = 0.0,
- double dayNightBlendFactor = 0.15,
- bool useRealTimeSunPosition = false,
Implementation
FlutterEarthGlobeController({
ImageProvider? surface,
ImageProvider? nightSurface,
ImageProvider? background,
this.rotationSpeed = 0.2,
this.isZoomEnabled = true,
this.zoom = 1,
this.maxZoom = 1.6,
this.minZoom = 0.1,
bool isRotating = false,
this.isBackgroundFollowingSphereRotation = false,
this.surfaceConfiguration = const ImageConfiguration(),
this.nightSurfaceConfiguration = const ImageConfiguration(),
this.backgroundConfiguration = const ImageConfiguration(),
this.sphereStyle = const SphereStyle(),
this.isDayNightCycleEnabled = false,
this.sunLongitude = 0.0,
this.sunLatitude = 0.0,
this.dayNightBlendFactor = 0.15,
this.useRealTimeSunPosition = false,
}) {
assert(minZoom < maxZoom);
assert(zoom >= minZoom && zoom <= maxZoom);
_isRotating = isRotating;
if (surface != null) {
loadSurface(surface);
}
if (nightSurface != null) {
loadNightSurface(nightSurface);
}
if (background != null) {
loadBackground(background);
}
}