longitudes are always indicated as -180 to 0 to 180 degrees. The green indicate 'correct' coordinates, the red indicates probable formatting errors that are out of range. latitudes are 90 to 0 to -90 degrees.
Have you performed a DoIt of the values in your join attached to your Web1.PostText Block to see the values you are attempting to post?
The values that are posting to your lat and lon columns in your spreadsheet have issues. You can use DoIt to find out what values you are sending using the Web component. Your lat values are too largee; you lon values might be ok except in row 2.
i wanna ask another question? i want made another project with same app but the data store to mysql database because i need to connect the database to web admin,do u know how to do that?
i dont understand that guide,do you have a suggestion what database I can use for this project, which is simple and can also be connected to the web admin?
var JudulLaporan = e.parameter.JudulLaporan;
var IsiLaporan = e.parameter.IsiLaporan;
var Tanggal = e.parameter.Tanggal;
var Instanti = e.parameter.Instanti;
doesn't work, try this way:
var JudulLaporan = e.parameters.JudulLaporan[0];
var IsiLaporan = e.parameters.IsiLaporan[0];
var Tanggal = e.parameters.Tanggal[0];
var Instanti = e.parameters.Instanti[0];
One of them has to work (they are both working for me)