import type { BBox } from "@tomtom-org/maps-sdk/core"; /** * Map display options interface */ export interface MapOptions { /** * Zoom level (0-22) * 0: World, 6: Country, 10: City, 15: Streets, 19: Buildings */ zoom?: number; /** * Map center coordinates * Either center or bbox must be provided */ center?: { lat: number; lon: number; }; /** * Bounding box in format [west, south, east, north] * Alternative to center+zoom for defining the map area * Either center or bbox must be provided */ bbox?: BBox; /** * Map image width in pixels (1-8192) */ width?: number; /** * Map image height in pixels (1-8192) */ height?: number; /** * Map style */ style?: "main" | "night"; /** * Map layer type * - basic: Streets and basic features * - labels: Text labels only (transparent background) * - hybrid: Satellite imagery with labels */ layer?: "basic" | "labels" | "hybrid"; /** * Image format * - png: Better for maps with transparency * - jpg: Smaller file size for maps without transparency */ format?: "png" | "jpg"; /** * Geopolitical view for border disputes and territories */ view?: "Unified" | "IL" | "IN" | "MA" | "PK" | "AR" | "Arabic" | "RU" | "TR" | "CN" | "US"; /** * Language for map labels (IETF language tag) */ language?: string; } /** * Default values for map options */ export declare const DEFAULT_MAP_OPTIONS: { width: number; height: number; style: "main"; layer: "basic"; view: "Unified"; format: "png"; zoom: number; };