To use config.xml version number on APP. you need install
APP VERSION with npm.
To display the version number on APP.
this.platform.ready().then(() => {
this.appVersion.getVersionNumber().then((value) => {
var value = value.replace(/"/g, '');
this.version = 'v'+value;
})
});
and then put {{version}} where you want to display in html page.
and the output will be like this
v1.0.1
In IONIC 3 LoadingController you can set the content or text in starting. But if the loading is for getting information from many place and you want to display how many percent was completed or the process until which step.
this.loading = this.loadingCtrl.create({content: 'Please wait...'});
Just develop a project with IONIC and google map to tracking the transport routing. Because the google map wouldn’t rotate itself when the transport moving. It will confuse the user when they look at the map.
So I need to rotate the map to let navigation always facing to top. It will easy user to understand when they look at the map.