interface ICartesianMeasureValue {
    getLimitPoints(): [LatLng, LatLng];
    getCartesianValuesStringified(): string;
    getCartesianValues(): CartesianValue[];
    toJSON(): any;
    toJSONWithCartesianValuesStringified(): any;
    getCartesianValue(json): CartesianValue;
    getCartesianValueRounded(json): CartesianValue;
    setCartesianValue(json): void;
}

Implemented by

Methods

  • Parameters

    • json: {
          lat: number;
          lng: number;
          value: number;
      }
      • lat: number
      • lng: number
      • value: number

    Returns void