问题描述
如何在 C#.net 中使用移动设备(带 GPS)构建 GPS 跟踪系统?场景是
How do I go about building a GPS tracking system with mobile (with GPS) in C#.net ? The scenario is
通过支持 GPS 的手机跟踪用户(服务工程师,这里没有违法行为).我需要什么软件和硬件?有开源实现吗?
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?
对于车辆跟踪系统,如何使用 GPS?我想知道各种步骤/程序.我正在寻找正确的方向.
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.
推荐答案
我构建了一个窗口窗体版本来显示来自 GPS 的信息.从那以后就没有真正接触过它,但是如果您有兴趣,代码在 CodePlex 上.
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
- 转换为 Windows Mobile
- 构建用于记录位置的 Web 服务
- 修改代码以每隔一段时间将位置发布到 Web 服务
真的,我已经完成了艰苦的工作,或者为您解析来自串行连接的 GPS 命令.:)
Really I already did the hard work, or parsing the GPS commands from the serial connection for you. :)
这篇关于C#:GPS 跟踪系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!