hello,
i have following problem... the symbian c++ framework sends the longitude and latitude informations with a "," seperation to our webserver...
LT : 51,54056738130700 lg : 7,40964427552700
but i need the informations with a "." seperation.. i mean like this:
LT : 51.54056738130700 lg : 7.40964427552700
here is the code i use to store the gps coordinates into a file before sending it to the webserver...
rFile.Seek(ESeekEnd,pos);
rFile.Write(iAppView->iLatitudebuf);
rFile.Write(_L8(","));
rFile.Write(iAppView->iLongitudebuf);
rFile.Write(_L8("|"));
rFile.Close();
i hope someone can help me with this problem...
best regards,
nizar

Reply With Quote

