cysten wrote:When you submit, the url does not display the values selected.
Of course it doesn't - the form uses the POST method, not GET.
cysten wrote:would the server accept my attempt to post via the url?
I don't know what you mean by "post via the url." If you mean insert the form variables in the URL rather than POST'ing them like the form does not, no, that most likely won't work (unless the site programmers have designed the processing application to look for the values in either location).
cysten wrote: I couldn't find any other way to select values on a page other then by including them in url.
Including them in the query string is analogous to submitting a form with the GET method... what you need to do is use POST instead.
cysten wrote:How would I use cURL to check the box, enter the latitude and longitude, hit submit, and grab the contents of the result?
I don't think you understand what cURL does. There is no boxes to check or buttons to press... that stuff is just the graphical interface your web browser presents you. In the end, the data still gets POST'ed in a standard format.
All you're doing with cURL is sending the same variables that get sent as if you had done all of the above in your browser.