[Solved] Click to add map markers

I am creating an app that creates markers in google maps according to the coordinates sent, but when I click the submit button, the app restarts. can you help me?!

You asked this in the Classic forum, but your screen capture indicate that you are using X thunkable, which is a completely different environment. I am flagging you post so that it can be filed in the proper forum.

1 Like

pls someone can help me?

In the Add Marker block, you need to specify numbers in the latitude and longitude parameters, and you have numbers in string format, so crash occurs. Use the block for summing numbers like this:

longitude <- (from latitude get Text) + (0)
latitude <- (from longitude get Text) + (0)

1 Like