@nativescript-community/ui-carto
Version:
NativeScript plugin for CARTO Mobile SDK
16 lines (15 loc) • 404 B
TypeScript
import { MapPos } from '../core';
import { GroupBase } from './group.common';
export declare class Group extends GroupBase {
getNativePos(pos: MapPos): any;
get position(): MapPos;
set position(pos: MapPos);
get visible(): boolean;
set visible(value: boolean);
get metaData(): {
[k: string]: string;
};
set metaData(value: {
[k: string]: string;
});
}