Hello,
I want to read a text file containing Lat/long values and display them on the OpenGL canvas..
For this i have first converted Lat/Long to OpenGL xy coordinates.. and displayed them accordingly..
It works fine.. But After converting the values to be displayed lies in the following range
x-axis: 0 - 2
y-axis: 2 - 4
and my screen projection is
Code :glOrtho(0, canvas_width, 0, canvas_height, -1, 1);
So it appears as small as a point... I want it to be displayed at the center of the screen as big as the screen size..
how do i do this..??
Thanks in advance..