Home > @magiclane/maps-sdk > BNGProjection > setFields

BNGProjection.setFields() method

Sets the easting and northing of the point.

Signature:

setFields(params: {
        easting: number;
        northing: number;
    }): void;

Parameters

Parameter

Type

Description

params

{ easting: number; northing: number; }

The parameters object

params properties:

  • easting: number

    The easting coordinate of the point.

  • northing: number

    The northing coordinate of the point.

Returns:

void