Silver GPS - Part 1
Ok, here is part 1 of a multi-part installment to cover the Silver GPS application. I thought we would start by examining the "Big Picture" below.
This first segment will focus on the Mobile GPS Tracker client - which includes the ability to capture GPS data and store it locally on the device in a SQL Server Compact database. Before we begin, here is the software you will need to complete this piece of the application:
- Visual Studio 2005 / 2008
- Windows Mobile 6 SDK :
https://www.microsoft.com/downloads/details.aspx?FamilyID=06111a3a-a651-4745-88ef-3d48091a390b&DisplayLang=en
The starting point for this application will be the "GPS Sample" application that gets installed with the Windows Mobile 6 SDK at:
C:\Program Files\Windows Mobile 6 SDK\Samples\PocketPC\CS\GPS
You can get a feel for how the "FakeGPS" SDK tool works by copying the "FakeGPS.CAB" file from the following folder:
C:\Program Files\Windows Mobile 6 SDK\Tools\GPS
to the GPS Sample project. Then "include" the FakeGPS.CAB file in your project and right-click, mark the "Build Action" property as "Content" - so it gets deployed to the device.
To see this in action - Press F5 to run the application - Select "Windows Mobile Professional Emulator" as the deployment device.
The application will then be deployed to the device and you will see the following screen:
Click on Start / File Explorer / MyDevice / Program Files / gpssample to navigate to the installation folder.
Double-click on the "FakeGPS.cab" file - this will install the FakeGPS tool on the emulator device.
Once installed, you will find the FakeGPS application under Start / Programs on the emulator device:
After double-clicking, select the listbox item to "Enable" the FakeGPS tool and use the "FakeGPSData.txt file for GPS emulation data points.
At this point, you are ready to "Start" the GPS sample application and you will see that is starts registering GPS information via the emulator device...
We will use this base GPS application as a starting point for building the Silver GPS mobile application. In addition to this core GPS functionality, we will add the following items to the solution:
- Add a new SQL Compact Database to the solution
- Design the layout of the SQL Compact Database
- Add a Timer control
- Add code to "Save" the data to the SQL Compact database
- Add new menu items to start/stop saving GPS data to the SQL Compact database
(1) - Add a new SQL Compact Database to the solution:
- Right-click on the solution, "Add New Item" - > Database File -> Name it GPSTracks.sdf
(2) - Design the layout of the SQL Compact Database:
- Open the Database designer and add these fields:
- Note the use of the "Identity" field type for the ID field above.
(3) Add a Timer Control:
- Add a timer control to the main form and logic to save to the database every 2 minutes (120,000 milliseconds):
(4) Add code to "Save" the data to the SQL Compact database
(5) Add new menu items to start/stop saving GPS data to the SQL Compact database
And there you have it - a complete, ready-to-use GPS tracking application that saves your GPS data to a local SQL Compact database.
Here is the link to the code: SilverGPS_Part1.zip
and here is a link to a 15 minute overview with a Silverlight 1.0 Pop-Up Player: https://www.dotnettikihut.com/SilverGPS/
(Be sure to float over the top & bottom of the player to activate the controls and markers)
Well see you next time for Part 2 in the SilverGPS series:
"Creating a WCF host Web Service and Mobile NET CF Client"
Technorati Tags: SilverGPS, Compact Framework, WCF, Mobile, GPS
Comments
Anonymous
September 03, 2008
PingBack from http://www.easycoded.com/silver-gps-part-1/Anonymous
September 12, 2008
This code is tight...any eta on part 2?