C#: GPS Tracking system(C#:GPS 跟踪系统)
问题描述
如何在 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 跟踪系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C#:GPS 跟踪系统
基础教程推荐
- Moq It.Is<>不匹配 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
