| 279 | ) => TOut | Promise<TOut>; |
| 280 | |
| 281 | interface Options { |
| 282 | id?: string; |
| 283 | element?: HTMLElement; |
| 284 | tileSources?: |
| 285 | | string |
| 286 | | TileSourceOptions |
| 287 | | { |
| 288 | type: string; |
| 289 | levels?: Array<{ |
| 290 | url: string; |
| 291 | height: number; |
| 292 | width: number; |
| 293 | }>; |
| 294 | } |
| 295 | | { |
| 296 | Image: { |
| 297 | xmlns?: string; |
| 298 | Url: string; |
| 299 | Format: string; |
| 300 | Overlap: string; |
| 301 | TileSize: string; |
| 302 | Size: { |
| 303 | Width: string; |
| 304 | Height: string; |
| 305 | }; |
| 306 | }; |
| 307 | } |
| 308 | | Array<string | TileSource | { type: "openstreetmaps" }> |
| 309 | | (() => string) |
| 310 | | { getTileUrl: (level: number, x: number, y: number) => string }; |
| 311 | tabIndex?: number; |
| 312 | overlays?: any[]; |
| 313 | toolbar?: string | HTMLElement; |
| 314 | xmlPath?: string; |
| 315 | prefixUrl?: string; |
| 316 | navImages?: NavImages; |
| 317 | debugMode?: boolean; |
| 318 | debugGridColor?: string; |
| 319 | silenceMultiImageWarnings?: boolean; |
| 320 | blendTime?: number; |
| 321 | alwaysBlend?: boolean; |
| 322 | autoHideControls?: boolean; |
| 323 | immediateRender?: boolean; |
| 324 | defaultZoomLevel?: number; |
| 325 | drawer?: |
| 326 | | DrawerType |
| 327 | | DrawerConstructor |
| 328 | | Array<DrawerType | DrawerConstructor>; |
| 329 | drawerOptions?: DrawerOptions; |
| 330 | opacity?: number; |
| 331 | preload?: boolean; |
| 332 | compositeOperation?: |
| 333 | | "source-over" |
| 334 | | "source-atop" |
| 335 | | "source-in" |
| 336 | | "source-out" |
| 337 | | "destination-over" |
| 338 | | "destination-atop" |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…