当前位置:网站首页>Unity3d_API_GPS_LocationService
Unity3d_API_GPS_LocationService
2022-08-09 13:02:00 【MOVCat】
LocationService
class in UnityEngine
类成员
//指定是否在用户设置中启用位置服务。
public bool isEnabledByUser { get; }
//返回位置服务状态。
public LocationServiceStatus status { get; }
//最后测量设备的地理位置。
public LocationInfo lastData { get; }
//启动位置服务更新。
Start();
//停止定位服务更新。这可能有助于节省电池寿命。
Stop();[代码示例]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GetGPS : MonoBehaviour {
public string gps_info = "";
public int flash_num = 1;
IEnumerator StartGPS()
{
//用户设置里的定位服务是否启用
if (!Input.location.isEnabledByUser)
{
gps_info = "isEnabledByUser value is:" + Input.location.isEnabledByUser.ToString() + " Please turn on the GPS";
yield break;
}
Input.location.Start(10.0f, 10.0f);
int maxWait = 20;
while (Input.location.status == LocationServiceStatus.Initializing && maxWait > 0)
{
yield return new WaitForSeconds(1);
maxWait--;
}
if (maxWait < 1)
{
gps_info = "Init GPS service time out";
yield break;
}
if (Input.location.status == LocationServiceStatus.Failed)
{
gps_info = "Unable to determine device location";
yield break;
}
else
{
gps_info = "N:" + Input.location.lastData.latitude + " E:" + Input.location.lastData.longitude;
gps_info = gps_info + " Time:" + Input.location.lastData.timestamp;
yield return new WaitForSeconds(100);
}
//如果不需要连续查询位置更新,则停止服务。
Input.location.Stop();
}
void OnGUI()
{
GUI.skin.label.fontSize = 28;
GUI.Label(new Rect(20, 20, 600, 100), gps_info);
GUI.Label(new Rect(20, 120, 600, 48), flash_num.ToString());
GUI.skin.button.fontSize = 50;
if (GUI.Button(new Rect(Screen.width / 2 - 110, 200, 220, 85), "GPS定位"))
{
StartCoroutine(StartGPS());
}
if (GUI.Button(new Rect(Screen.width / 2 - 110, 500, 220, 85), "刷新GPS"))
{
gps_info = "N:" + Input.location.lastData.latitude + " E:" + Input.location.lastData.longitude;
gps_info = gps_info + " Time:" + Input.location.lastData.timestamp;
flash_num += 1;
}
}
}

边栏推荐
- CPU-MIPS32 instruction architecture (unlocked pipeline microprocessor)
- [MRCTF2020]套娃-1
- JS动画函数封装
- [极客大挑战 2019]Upload
- FFmpeg多媒体文件处理(ffmpeg处理流数据的基本概念)
- Time series analysis course lab report
- Explanation of RTSP protocol
- read stream 特别注意
- How to reduce the size of desktop icons after the computer is reinstalled
- telnet+ftp to control and upgrade the device
猜你喜欢
随机推荐
Unicom network management protocol block diagram
周末看点回顾|我国IPv6网络全面建成;2022昇腾AI开发者创享日·南京站成功举办…
FFmpeg multimedia file processing (FFMPEG logging system)
How to reduce the size of desktop icons after the computer is reinstalled
5G China unicom 一般性异常处理
【NVIDIA】Tesla V100安装NVIDIA-Driver驱动程序适配CUDA-Toolkit-11.6
leetcode 20. Valid Parentheses 有效的括号(中等)
【瑞吉外卖】day05:增、删、改、查分类以及公共字段自动填充
Professor Chen Qiang's "Machine Learning and R Application" course Chapter 15 Homework
43. The sword refers to Offer 1 ~ 1 the number of occurrences of n integers (recursive, mathematics)
陈强教授《机器学习及R应用》课程 第十三章作业
万物皆可柯里化的 Ramda.js
GIN文件上传与返回
从NPU-SLAM-EDA技术分析
Bitmaps and bit operations
gin的中间件和路由分组
Redis源码剖析之跳表(skiplist)
某高校的R语言数据分析期末作业
Microsoft 10/11 命令行打开系统设置页(WUAP,!WIN32)
How to solve the 0x80070005 error when the computer is reinstalled and the system is restored








