maptoolkit
Version:
Utilidades para trabajar con el mapa de google web.
20 lines (19 loc) • 508 B
TypeScript
/// <reference types="googlemaps" />
export interface IBubbleInfoOptions {
content: string;
position: google.maps.LatLng;
shadowStyle?: number;
padding?: number;
backgroundColor?: string;
borderRadius?: number;
arrowSize?: number;
borderWidth?: number;
borderColor?: string;
disableAutoPan?: boolean;
hideCloseButton?: boolean;
arrowPosition?: number;
backgroundClassName?: string;
minWidth?: number;
minHeight?: number;
arrowStyle?: number;
}