UNPKG
casc-cesium
Version:
latest (3.0.12)
3.0.12
3.0.11
3.0.10-beta.0
Vue 3.x components for CesiumJS.
casc-cesium
/
lib
/
components
/
providers
/
baidu
/
Point.d.ts
9 lines
(8 loc)
•
194 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
declare
class
Point
{
lat
:
number
;
lng
:
number
;
constructor
(
lng
:
any
,
lat
:
any
);
equals
(
other
:
any
):
boolean
;
static
isInRange
:
(
pt
:
any
) =>
boolean
; }
export
default
Point
;