Hang on...
After a bit more reading on the web -- have i been looking into this too much?!
Could i simply pass the gps position to a UIWebView by calling a javascript function from within the Objective-C???
Using this guide:
WebKit Objective-C Programming Guide: Using JavaScript From Objective-C
or this:
Scripting with JavaScript in Cocoa
Could i have a page on my server, called page.html
with the javascript function:
function hello(gps1,gps2){
alert("hi" + gps1 )
}
then load it in the UIWebView, then in my iphone app call it somehow and pass the gps???
Cheers again for reading!