mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
440 B
TypeScript
16 lines
440 B
TypeScript
declare namespace AMap {
|
|
namespace Map {
|
|
interface Object3DResult {
|
|
index: number;
|
|
point: Vector3;
|
|
distance: number;
|
|
object: Object3D;
|
|
}
|
|
}
|
|
interface Map {
|
|
AmbientLight?: Lights.AmbientLight;
|
|
DirectionLight?: Lights.DirectionLight;
|
|
getObject3DByContainerPos(pixel: Pixel, layers?: Layer[], all?: boolean): Map.Object3DResult | null;
|
|
}
|
|
}
|