interface JPointStyleParams {
    description?: string;
    id?: string;
    name: string;
    organizationId?: string;
    proportional: boolean;
    proportionalScale: number;
    rotation: number;
    rotationLocked: boolean;
    size: number;
    symbolData: string;
    symbolMimeType?: string;
    symbolOffset: {
        x: number;
        y: number;
    };
    tags: string[];
    transparency: number;
    type: "POINT";
}

Hierarchy (view full)

Properties

description?: string
id?: string
name: string
organizationId?: string
proportional: boolean
proportionalScale: number
rotation: number
rotationLocked: boolean
size: number
symbolData: string
symbolMimeType?: string
symbolOffset: {
    x: number;
    y: number;
}

Type declaration

  • x: number
  • y: number
tags: string[]
transparency: number
type: "POINT"