interface JPointStyle {
    createdBy: string;
    creationDate: string;
    description?: string;
    id: string;
    lastModificationDate: string;
    lastModifiedBy: 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: JTag[];
    transparency: number;
    type: "POINT";
}

Hierarchy (view full)

Properties

createdBy: string
creationDate: string
description?: string
id: string
lastModificationDate: string
lastModifiedBy: 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: JTag[]
transparency: number
type: "POINT"