ViewConstraints.MaxNominalScale Property
Gets or sets the maximum allowed nominal scale in a 2D view.
Thread safety: This property is not thread-safe.
Syntax
public System.Double MaxNominalScale { get; set; }
Property Value
Type: System.Double
Default: max
The maximum allowed nominal scale in a 2D view.
Default: max
The maximum allowed nominal scale in a 2D view.
Example
// Constrain the View to Europe with a nominal scale between 1:5 000 000 and 1:50 000
static void ConstrainViewToEuropeWithMinMaxScale(View view)
{
ViewConstraints viewConstraints = new ViewConstraints();
// The bounds of europe in Wgs84LongLat
Rectangle europeBoundary = new Rectangle(-13.01, 35.96, 32.17, 71.69);
// Project the bounding coordinates to the Crs of the View
europeBoundary = Crs.Wgs84LongLat.ProjectTo(view.Crs, europeBoundary).Bounds;
// Set the bounds in the ViewConstraints
viewConstraints.Bounds = europeBoundary;
// Set the MaxNominalScale to 1:5 000 000
viewConstraints.MaxNominalScale = 5000000;
// Set the MinNominalScale to 1:50 000
viewConstraints.MinNominalScale = 50000;
// The following modification must be made on the GUI thread
// Set the ViewConstraints in the View while holding the global configuration lock
view.Constraints = viewConstraints;
}
Platforms
Windows, Linux, Android