vote up 0 vote down star
1

When you obtain the lat/long values from a GPS enabled blackberry device, how do you send those values to a server via a url? By the way, I'm trying to do this in Javascript. "window.location.href=..." works fine on the iphone.

I was thinking something like this would work but it doesn't seem to:

function locationCB() { 	 							
    window.location.href="http://www.somewebsite.com/latitude:"+blackberry.location.latitude+"/longitude:"+blackberry.location.longitude;
    return true;
}

if ( window.blackberry && blackberry.location.GPSSupported) {
    	blackberry.location.onLocationUpdate("locationCB()");
    	blackberry.location.setAidMode(2);
    	blackberry.location.refreshLocation();
}
flag

80% accept rate
And what is current result? BB location api called successfully? any values are returned? or problem is to deliver data to server? – coldice Aug 4 at 7:12
Have you tried window.location = "http://..."? – notnoop Aug 4 at 14:56
blackberry devices make the GPS coordinates THIS easy to gather from the browser? Are there any security prompts etc? – Allen Aug 4 at 15:04
actually there is a prompt asking for permission to acquire the lat/long points. – donalg d Aug 4 at 15:11

1 Answer

vote up 0 vote down

If the problem is to send data to server, try this:

http://www.somewebsite.com/[page with gps gather code]?latitude=[value]&longitude=[value]

See
Using URL Parameters
How to send GPS data using HTTP to your web site

Code to parse url parameters will depend on server platform

ASP.NET Passing Parameters from One Page to Another
how to extract parameter from URL using PHP
Java - Access parameters passed in the URL

link|flag

Your Answer

Get an OpenID
or

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