@nativescript-community/ui-carto
Version:
NativeScript plugin for CARTO Mobile SDK
23 lines (22 loc) • 1.03 kB
TypeScript
import { Color } from '@nativescript/core';
import { Geometry } from '../geometry';
import { BaseVectorElementStyleBuilder } from './index.common';
import { BasePointVectorElement } from './index.ios';
import { PointOptions, PointStyleBuilderOptions } from './point';
export declare class PointStyleBuilder extends BaseVectorElementStyleBuilder<NTPointStyleBuilder, PointStyleBuilderOptions> {
createNative(options: PointStyleBuilderOptions): NTPointStyleBuilder;
size: number;
color: Color | string;
clickSize: number;
mBuildStyle: NTPointStyle;
buildStyle(): NTPointStyle;
}
export declare class Point extends BasePointVectorElement<NTPoint, PointOptions> {
color: Color | string;
size: number;
createNative(options: PointOptions): NTPoint;
buildStyle(): NTPointStyle;
get styleBuilder(): PointStyleBuilder | NTPointStyle | PointStyleBuilderOptions;
set styleBuilder(value: PointStyleBuilder | NTPointStyle | PointStyleBuilderOptions);
set geometry(geometry: Geometry);
}