Advanced Google Maps Module & Widget Lat/Long fields

0
Hi! Using this widget https://appstore.home.mendix.com/link/app/1209/ There is possibility to add google map advanced add-on on the page (I want to show routes). But when trying to setup it, on tab Markers there are two fields Latitude and Longtitude. Both of them ask me field with type int (!!!). Not float (I know that it already depricated, but the widget is old) not decimal, but Integer! what I'm missing? Does anybody knows url to git or any repo with sources of that widget?
asked
2 answers
0

Feeto,

Have you tried creating a variable of type integer, and using the functions

parseInteger(toString($floatvariable))

 

I'm not sure if there is a function that can convert a float to an integer, but if you convert the float to a string, you can use the function parse integer to convert the string to an integer.

answered
0

Have you tried multiplying the decimal value by 100.000.000 (10^8) and make that a long?

answered