UNPKG
maptoolkit
Version:
latest (1.0.0)
1.0.0
Utilidades para trabajar con el mapa de google web.
maptoolkit
/
dist
/
math.d.ts
10 lines
(9 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Created by dss on 8/9/17. */
import
{ IGeoPoint } from
"./igeopoint"
;
export
declare
class
MapMath
{
static
angleBetweenLocations
(sourcePt: IGeoPoint, targetPt: IGeoPoint)
: number;
static
toDegrees
(rad: number)
: number;
static
toRadians
(deg: number)
: number;
}