SYMBOL INDEX (41 symbols across 5 files) FILE: examples/config.ts constant MAP_ID (line 19) | const MAP_ID = "7b9a897acd0a63a4"; constant LOADER_OPTIONS (line 21) | const LOADER_OPTIONS: LoaderOptions = { FILE: examples/raycasting.ts constant DEFAULT_COLOR (line 40) | const DEFAULT_COLOR = 0xffffff; constant HIGHLIGHT_COLOR (line 41) | const HIGHLIGHT_COLOR = 0xff0000; FILE: src/__tests__/__utils__/createWebGlContext.ts function createWebGlContext (line 28) | function createWebGlContext() { FILE: src/three.ts constant DEFAULT_UP (line 45) | const DEFAULT_UP = new Vector3(0, 0, 1); type RaycastOptions (line 47) | interface RaycastOptions { type ThreeJSOverlayViewOptions (line 72) | interface ThreeJSOverlayViewOptions { class ThreeJSOverlayView (line 126) | class ThreeJSOverlayView implements google.maps.WebGLOverlayView { method constructor (line 144) | constructor(options: ThreeJSOverlayViewOptions = {}) { method setAnchor (line 183) | public setAnchor(anchor: LatLngTypes) { method setUpAxis (line 191) | public setUpAxis(axis: "Y" | "Z" | Vector3): void { method raycast (line 259) | public raycast( method onStateUpdate (line 320) | public onStateUpdate(): void {} method onAdd (line 327) | public onAdd(): void {} method onBeforeDraw (line 333) | public onBeforeDraw(): void {} method onRemove (line 340) | public onRemove(): void {} method requestStateUpdate (line 345) | public requestStateUpdate(): void { method requestRedraw (line 352) | public requestRedraw(): void { method getMap (line 359) | public getMap(): google.maps.Map { method setMap (line 367) | public setMap(map: google.maps.Map): void { method addListener (line 376) | public addListener( method onContextRestored (line 388) | public onContextRestored({ gl }: google.maps.WebGLStateOptions) { method onContextLost (line 415) | public onContextLost() { method onDraw (line 431) | public onDraw({ gl, transformer }: google.maps.WebGLDrawOptions): void { method latLngAltitudeToVector3 (line 450) | public latLngAltitudeToVector3( method bindTo (line 470) | public bindTo( method get (line 482) | public get(key: string) { method notify (line 491) | public notify(key: string): void { method set (line 498) | public set(key: string, value: unknown): void { method setValues (line 505) | public setValues(values?: object): void { method unbind (line 513) | public unbind(key: string): void { method unbindAll (line 520) | public unbindAll(): void { method initSceneLights (line 528) | private initSceneLights() { FILE: src/util.ts type LatLngTypes (line 19) | type LatLngTypes = constant EARTH_RADIUS (line 29) | const EARTH_RADIUS = 6371010.0; constant WORLD_SIZE (line 30) | const WORLD_SIZE = Math.PI * EARTH_RADIUS; function toLatLngAltitudeLiteral (line 37) | function toLatLngAltitudeLiteral( function latLngToVector3Relative (line 56) | function latLngToVector3Relative( function latLngToXY (line 78) | function latLngToXY(position: google.maps.LatLngLiteral): number[] { function xyToLatLng (line 89) | function xyToLatLng(p: number[]): google.maps.LatLngLiteral {