Is it possible to get the get center of a phone's screen using x and y coordinates? I'm going to use the coordinates to position my markers. Thanks!
A
Andreas Schacherbauer
said
over 9 years ago
Hi Miguel,
Do you know the js properties 'width' and 'height'? You can access them through 'window.screen.width' and 'window.screen.height'. They return the actual screen size in either dimension. You just need to divide them by two and you know the center screen coordinates.
Rivera.migueld