Hi guys i am using google's api for geocode requests.
I get it in this format:
LAT: 28.055949
LONG: -25.7153269
I use a javascript function:
<script language="javascript" type="text/javascript">
function PanToWorldCoordinate(x, y) {
var newX = x;
var newY = y;
Map1.PanToWorldCoordinate(newX, newY);
}
</script>
Which moves the Map to a totally incorrect location.
The correct location on my ThinkGeo Map shows up as:
X Y (3117076.2094464 , -3001274.014313)
How do i convert the Lat long to the x y ?
Thank you in advance.