Also, is there an easy way to report adress?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Also, is there an easy way to report adress?
Hello,
Of course, you can reduce the decimals with a simple JS codeprevar a = 1.23456789;
var b = Math.round(a * 100) / 100;/pre
here you will get 1.23 value in the variable "b". You can control a number of digits by changing 100 to 1000 (you will get 1.234) and so on
Thanks! And where do i implement this?
Please add this code to the mapping your lattitude/longitude values to labels: https://docs.appery.io/docs/appbuilde...
Your code should be:prereturn Math.round(value * 100) / 100;/pre
Thanks! Worked like a charm!