The example code won't compile because the NewLC method doesn't exist in the class.
---*1 Use NewL instead of NewLC
The zipped source code won't compile because the GetCurrentPositionL method isn't declared in the header file.
---*2 Replace GetCurrentPositionL by FetchCurrentLocationL
ECidWaitNote needs to be defined somewhere to get the code to compile.
---*3 Add this code to your *.hrh file
[code] enum TControlID { ECidWaitNote = 0x6666 }; [/code] note: you can also change the id and define it in your *.hrh file. you can also use another value.
The .ra file has EAknWaitNoteFlag instead of EAknWaitNoteFlags. Will not compile.
---*4 Copy the content of .ra file to your *.rssi file.
After signing the file using a developer certificate and installing on the phone, when I open the application, I get a "System Error!". Any clue why this so?
---*5 The error: "System Error" is obtained because the file where you put the #include *.ra line is incorrect. Don't put this line in any file just do the item 4 with (---*4) mark.
Hope it helps - by joseph.m
Hello, I'm currently testing this example. I've got one question. It seems like it shows the coordinates with a very low precision? I mean it seems to retrive some coordinates but they stay the same when position changes (a change of about 50m) doesn't affect the coordinates. on the other hand the coordinates change in the standard Nokia GPS app (tools). any idea how to change the precision?