public final class MapNavigator extends Object implements AutoCloseable
It offers high-level navigation capabilities, built on top of the more low-level camera API.
See documentation of the following classes for example usages:
This class animates the camera by submitting IAnimations
to the map's Map#getAnimationManager
, or by registering Map.IRendererCallback
instance. These can be canceled using the MapNavigator#cancel
method. Note that starting a new navigate action using MapNavigator
will automatically cancel any ongoing navigate actions.
The following navigation constraints can be used to restrict navigation:
above
: keeps the camera above terrain.
bounds
: keeps the camera inside the defined bounds.
scale
: prevents the camera from zooming in or out too far.
pitch
: restricts the pitch (tilt) of the camera
If you use the map's underlying Camera
directly
, the constraints are not applied. In that case, it's the API user's responsibility to restrict the camera movement.
See also the related articles on
Modifier and Type | Class and Description |
---|---|
static class |
MapNavigator.AboveConstraintOptions
Option to configure the navigation constraint to keep the camera above the terrain.
|
static class |
MapNavigator.BoundsConstraintOptions
Options to configure the constraint to restrict the navigation to specific bounds.
|
static class |
MapNavigator.FitAction
Class that allows to build a fit action and apply it, either directly or using an animation.
|
static class |
MapNavigator.PanAction
Class that allows to build a pan action and apply it, either directly or using an animation.
|
static class |
MapNavigator.PitchConstraintOptions
Options to configure the constraint to restrict the pitch (tilt) of the camera.
|
static class |
MapNavigator.RotateAction
Class that allows to build a rotate action and apply it, either directly or using an animation.
|
static class |
MapNavigator.ScaleConstraintOptions
Options to configure the scale constraint to restrict the camera zooming.
|
static class |
MapNavigator.ZoomAction
Class that allows to build a zoom action and apply it, either directly or using an animation.
|
Modifier and Type | Method and Description |
---|---|
void |
cancel()
Cancels all ongoing navigate actions that were started using this
MapNavigator . |
void |
close() |
protected void |
finalize() |
MapNavigator.AboveConstraintOptions |
getAboveConstraint()
Returns the above constraint options for this
MapNavigator . |
MapNavigator.BoundsConstraintOptions |
getBoundsConstraint()
Returns the constraint that can be used to restrict navigation in such a way that you can not see anything beyond the limit bounds.
|
MapNavigator.PitchConstraintOptions |
getPitchConstraint()
Returns the constraint that can be used to restrict the pitch (tilt) of the camera on a 3D map.
|
MapNavigator.ScaleConstraintOptions |
getScaleConstraint()
Returns the scale constraint options that can be used used to restrict the map to a min/max scale.
|
MapNavigator.FitAction |
newFitAction() |
MapNavigator.PanAction |
newPanAction() |
MapNavigator.RotateAction |
newRotateAction() |
MapNavigator.ZoomAction |
newZoomAction() |
public void close()
close
in interface AutoCloseable
public void cancel()
MapNavigator
.
This includes stopping all animations and all input-based navigate actions. The latter will start ignoring input after this method is called.
@NotNull public MapNavigator.AboveConstraintOptions getAboveConstraint()
MapNavigator
.
The above constraint can be used to constrain the camera to remain above the terrain and/or mesh in a 3D map. This constraint is only applicable to 3D maps
.
By default, the above constraint is enabled with a minimum altitude of 20.
Example usage:
// Change the limit
map.getMapNavigator().getAboveConstraint().setMinAltitude(123.0);
// Disable the constraint
map.getMapNavigator().getAboveConstraint().setEnabled(false);
@NotNull public MapNavigator.ScaleConstraintOptions getScaleConstraint()
By default the scale constraint is configured not to impose limitations.
This constraint only works in 2D.
A conflict may occur when you use both a scale and a bounds constraint
. This can happen when, for example, the maxZoomedIn constraint is set to a country level scale, while the bounds constraint is set to the bounds of a city. In such a case, the bounds constraint is respected over the scale constraint. To prevent such inconsistencies, it is best to use either the bounds constraint or the scale constraint to restrict the zooming behavior of the map and not both.
The following example shows how to configure the scale constraint:
// Limit zooming in
map.getMapNavigator().getScaleConstraint().setZoomInLimit(MapScale.fromDenominator(1000.0));
@NotNull public MapNavigator.BoundsConstraintOptions getBoundsConstraint()
By default this constraint is disabled.
This constraint only works in 2D.
A conflict may occur when you use both a scale and a bounds constraint
. This can happen when, for example, the maxZoomedIn constraint is set to a country level scale, while the bounds constraint is set to the bounds of a city. In such a case, the bounds constraint is respected over the scale constraint. To prevent such inconsistencies, it is best to use either the bounds constraint or the scale constraint to restrict the zooming behavior of the map and not both.
If this constraint is enabled (and if valid bounds are provided), map rotation is not possible.
The following example configures the bounds constraint with bounds and a padding of 5 pixels.
CoordinateReference wgs84 = CoordinateReferenceProvider.create("EPSG:4326");
Bounds bounds = new Bounds(wgs84, new Coordinate(50.0, 4.0), 20.0, 20.0, 0.0);
var boundsConstraint = map.getMapNavigator().getBoundsConstraint();
boundsConstraint.setEnabled(true);
boundsConstraint.setBounds(bounds);
boundsConstraint.setPadding(5.0);
@NotNull public MapNavigator.PitchConstraintOptions getPitchConstraint()
The constraint is always enabled, but its default values don't impose restrictions on the pitch of the camera.
This constraint only works in 3D.
The following example sets the min and max pitch limits.
map.getMapNavigator().getPitchConstraint().setMinPitch(-45.0);
map.getMapNavigator().getPitchConstraint().setMaxPitch(45.0);
@NotNull public MapNavigator.PanAction newPanAction()
@NotNull public MapNavigator.ZoomAction newZoomAction()
@NotNull public MapNavigator.RotateAction newRotateAction()
@NotNull public MapNavigator.FitAction newFitAction()