I have a Web Application that displays a Map Service that is in NAD 1927 UTM Zone 15N. I have JavaScript code that displays the XY in status bar based on where mouse cursor is on that map. I want to display Latitude/Longitude values instead. Does anyone know how?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

There is a javascript port of the proj.4 projection system called proj4js. proj.4 allows converting from grids to lat/long and vice-versa.

link|improve this answer
This sounds promising mtrw. I don't suppose you have any quick code to show me how to implement this? I see there is some documentation that I will start reading up on. – Josh Apr 19 '10 at 20:53
@Josh - I'm afraid not. I've used proj.4 in desktop stuff, but I've never done any web development. – mtrw Apr 19 '10 at 21:18
mtrw- How did you get this installed? My OS is Windows XP. All the files that came from the zip file are readable in wordpad but I'm confused – Josh Apr 19 '10 at 21:41
@Josh - I've only ever installed proj.4, which is the original C-language version. If you want to try that, it's available at trac.osgeo.org/proj (look under the "Binaries" section for prebuilt files). You can use invproj from the command line for the calculation you're looking for. But getting it into a browser is outside my abilities, I'm afraid. – mtrw Apr 19 '10 at 21:53
@Josh - Does a c# solution work for you? See stackoverflow.com/questions/1867950/… – mtrw Apr 19 '10 at 21:56
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.