ICircleBound

Circle bounds definition

Definition

export interface ICircleBound {
    /**
     * center of the circle
     */
    center: [number, number],
    /**
     * radius of the circle
     */
    radius: number
}

Usage

import { ICircleBound } from 'uxp/components';

Examples

tsx
{
  center: [1.29, 103.85],
  radius: 2000
}

Last updated