0

I want to change the display name of the ios location popup: „Would like to use your current location“. Does somebody has any idea?

enter image description here

ceejayoz
  • 176,543
  • 40
  • 303
  • 368
alus
  • 1
  • 1

1 Answers1

0

Check This Post Location permission alert - Location permission alert on iPhone with Cordova


Use this plugin for Alert - **`cordova plugin add cordova-plugin-dialogs`**
function alertDismissed() {
    // do something
}

navigator.notification.alert(
    'Alert Message',  // message
    alertDismissed,         // callback
    'Alert Title',            // title
    'Done'                  // buttonName
);

Read More

Ramprasath Selvam
  • 3,868
  • 3
  • 25
  • 41