问题描述
我如何着手在C#.net中建立一个带有移动设备(带有GPS)的GPS跟踪系统?
场景是
-
通过支持GPS的移动电话追踪用户(服务工程师,这里没有任何违法)。我需要什么软件和硬件?有没有开源的实现?
-
对于车辆跟踪系统,我该如何处理GPS?我想知道各种步骤/程序。我正在寻找一些正确的方向。
版本来显示来自GPS的信息。以后没有真正触及过它,但是如果您有兴趣,代码在CodePlex上。
所有你需要做的事情来获得这个跟踪的人是
- 转换为Windows Mobile
- 建立一个记录位置的Web服务
- 修改代码以便每隔一段时间将位置发布到Web Service
真的,我已经做了很多工作,或者从串口连接解析GPS命令。 :)
How do I go about building a GPS tracking system with mobile (with GPS) in C#.net ?The scenario is
Track a user (service engineer, nothing illegal here) via a GPS enabled mobile Phone. What software and hardware will I require? Is there any open source implementation?
For a vehicle tracking system, how do I go about with GPS? I would like to know the various steps/procedure. I am looking for some right direction.
I built a Window Forms version to display information from a GPS. Haven't really touched it much since, but if you are interested the code is on CodePlex.
http://gps.codeplex.com/SourceControl/changeset/view/24953#146657
All that you need to do to get this tracking somebody is
- Convert to Windows Mobile
- Build a Web Service for recording location
- Modify code to post location to Web Service every so often
Really I already did the hard work, or parsing the GPS commands from the serial connection for you. :)
这篇关于C#:GPS跟踪系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!