ng-leaflet-universal-cm
Version:
NgLeafletUniversal is an open source Angular module that extends and simplifies the Leaflet implementation for Angular.
43 lines (42 loc) • 967 B
TypeScript
export interface MarkerCard {
image?: CardImage;
title?: CardText;
subtitle?: CardText;
address?: CardText;
content?: CardText;
cardStyle?: CardStyle;
callToActions?: CardCallToAction[];
customStyleClass?: string;
customHtml?: string;
}
export interface CardImage {
width?: string;
height?: string;
url: string;
secureBase64?: boolean;
rounded?: boolean;
customStyleClass?: string;
}
export interface CardText {
text: string;
size?: string;
color?: string;
customStyleClass?: string;
}
export interface CardStyle {
backgroundColor?: string;
borderRadius?: string;
elevation?: number;
opacity?: number;
enabledTextOpacity?: boolean;
customStyleClass?: string;
}
export declare class CardCallToAction {
text: string;
backgroundColor?: string;
textColor?: string;
link: string;
elevation?: string;
customStyleClass?: string;
icon?: string;
}