Maps SDK for Web
tt.Point
An object, which has x and y properties representing screen coordinates in pixels. Alternatively, you define a point using an array of two numbers representing x and y screen coordinates in pixels.
var point1 = { x: 28, y: -45 };
var point2 = [28, -45];