up vote 3 down vote favorite
1
share [g+] share [fb]

How do you change the string on the alert saying: "(Appname/whatever it is) would like to use your current location"?

Of course, I only want to change the appname part. Because when you use the framework phonegap, the string is VERY ugly, something like this: "/var/mobile/Applications/157EB70D-4AA7-826E-690F0CBE0F/appname.app/www/index.html".

Someone having an idea?

link|improve this question
feedback

6 Answers

You need to do the geolocation after the device is ready. The following Jquery code, for example, will geolocate without that nasty alert:

$(function(){
  document.addEventListener("deviceready", onDeviceReady, false);
})

function onDeviceReady() {
  navigator.geolocation.getCurrentPosition(onSuccess, onError);     
}

function onSuccess(position) {
  // your callback here 
}

function onError(error) { 
  // your callback here
}
link|improve this answer
1  
This works perfectly! Can't understand why isn't this marked as the answer.. – thandasoru Sep 28 '11 at 9:40
excellent answer, solved my problem. why the right answer is not on the top? – 29decibel Dec 23 '11 at 7:42
feedback

What is the Bundle display name of your project?

Try changing manually from the default value ${PRODUCT_NAME} and see..

That Permission to use location alert picks your bundle display name only!!

link|improve this answer
It doesnt matter, I have set both "bundle display name" and "bundle name" properties manually! The one I havent set manually is "Executable file" which is ${EXECUTABLE_NAME}. But if I change that I cant compile, obviously.. – blmstr Nov 4 '09 at 14:45
feedback
up vote 0 down vote accepted

I found the answer myself and I thought I would share it with you! In iPhone OS > 3.0 Safari supports geolocation and therefore in phonegap when you use the navigator.geolocation it triggers the geolocation in Safari and because Safaris permission alert text is printing the url of the site it gets ugly when you use it with phonegap. I solved this by not using navigator.geolocation. Not the best solution but a working one.

link|improve this answer
3  
what did you use then? – Umair Ashraf Jul 19 '11 at 11:13
You forgot to tell what solution you used – thandasoru Sep 29 '11 at 7:57
right answer is below – 29decibel Dec 23 '11 at 7:42
feedback

I'm late to the party here, but will answer the question for reference. The answer is to use the geolocation functions found in phonegap.js which is included with Phonegap. You will be able to find such instructions on the Phonegap site at http://www.phonegap.com.

If you use navigator.geolocation, you are using the default Safari geolocation system. This happens as PhoneGap works by running your pages effectively in a Safari instance. If you include phonegap.js into your site, you can use a separate geolocation method exposed by PhoneGap's Objective-C code, which will present the behaviour seen in other apps where it asks for permission from [your app name].

link|improve this answer
Can you point to the exact location in phonegap.com where this is written? – thandasoru Sep 29 '11 at 7:53
feedback

1) modify Location.m in PhoneGapLib project. replace all references of navigator.geolocation with navigator_geo

2) Copy phonegap.js to phonegap2.js and put in root of app. I have now learned that every time I build my application and load it onto device or simulator, the phonegap.js file is being regenerated. OK. Well I need to modify it so lets just use another one and deal with the hassles of upgrading in the future.

3) Modify the line (in phonegap2.js) that creates the constructor for the navigator.geolocation on 626 to be ... if (typeof navigator._geo == "undefined") navigator._geo = new Geolocation();

4) Now in your HTML whenever you want to use the PHONEGAP GPS stuff, you can reference it with navigator._geo.getCurrentPosition or similar 5) Enjoy the ONE, and CLEAN, location alert permission without revealing to your users your intelligence to use PhoneGap and build an app with HTML/JS.

* CAVEAT AND PLEASE HELP! *

If I run the watchPosition function, I will get the first location update with all sorts of stats. There after, It will always report an error. I assume this sucks for this 30 second time of getting accurate GPS on these things?

http://groups.google.com/group/phonegap/browse_thread/thread/8067c2037816a9ad

link|improve this answer
feedback

I followed all the instructions and it still failed. In the end I played around with the PhoneGap demo and found the final solution:

  1. Move all the js files and html files into the same folder (not even sub-folder). Congratulations! Problem solved, no permission alert any more : )

  2. BTW, You'd better use a " setTimeout(function(){utility.getGeoData();},1000);" I found "document.addEventListener("deviceready", utility.getGeoData(), false);" not work for me.

Hope that helps when you find no solution above : )

Good luck!

link|improve this answer
Thank Caleb for correcting :) – Bingo Mar 9 '11 at 6:22
“document.addEventListener("deviceready",utility.getGeoData(),false)” is not working because you are executing getGeoData, which makes its return value become the second parameter to addEventListener instead of the function. Remove the brackets for it and it should work. Ad@m – adam Aug 30 '11 at 11:50
feedback

Your Answer

 
or
required, but never shown

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