草庐IT

geoLocation

全部标签

c# - Windows/C# 通过操作系统(不是 IP 地址)检测用户的半球?

我有一个C#.Net(4.0)应用程序,我想根据季节为它做一些逻辑。此应用程序将由北半球和南半球的人们使用,并且可能在也可能不在连接到Internet的机器上使用。另一个SO用户提出了类似的问题here,这让我可以根据机器的本地时区信息寻求解决方案。我的JavaScript到C#的“端口”大致如下所示:TimeZoneInfotzi=TimeZoneInfo.Local;TimeSpanjanuary=tzi.GetUtcOffset(newDateTime(System.DateTime.Now.Year,1,1));TimeSpanjuly=tzi.GetUtcOffset(new

c# - 系统设备位置不起作用

我有使用Windows计算机中的system.device.locationapi的代码。这应该是相当简单的代码varwatcher=newGeoCoordinateWatcher();watcher.PositionChanged+=newEventHandler>(GeoPositionChanged);watcher.Start();varcoord=watcher.Position.Location;我的意思是我需要做的就是启动地理观察器,然后读取位置。但它只返回“位置未知”,我想知道代码是否有问题,或者是否需要在计算机上安装某些东西,或者什么。我已经用几台Windows7电脑

windows - 是否可以在 PositionChanged 事件处理程序中更改 Geolocator 的 DesiredAccuracy 和 ReportInterval?

我想更改PositionChanged事件处理程序中的DesiredAccuracy和ReportInterval,以便我可以动态更改不同位置的位置更新频率。我做了这样的事情,voidgeolocator_PositionChanged(Geolocatorsender,PositionChangedEventArgsargs){geolocator.StatusChanged-=geolocator_StatusChanged;geolocator.PositionChanged-=geolocator_PositionChanged;geolocator.DesiredAccura

javascript - html5 地理定位不适用于 safari 浏览器

致力于html5地理定位。在mozilla、chrome、IE上试过。在它们上工作正常但不适用于safari。在mac上的safari(8.0.5)、windows上的safari(5.1)上测试只需点击urlhttp://www.w3schools.com/html/html5_geolocation.asp或http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocationClickthebuttontogetyourcoordinates.TryItvarx=document.getElementById("

c# - Newtonsoft.Json.JsonSerializationException(从“System.Data.SqlTypes.SqlDouble”上的 'Value' 获取值时出错)序列化 SqlGeography

我尝试在数据库SQLServer2012中使用Newtonsoft.Json版本“Newtonsoft.Json.10.0.3”将DataTable对象序列化为Json。该表有一个类型为“geography”的列,其中包含类型为SqlGeography的实例.用于生成json的代码:publicstringSerializeToJson(){varconnstring1="DataSource=server1;InitialCatalog=database1;user=xxx;password=yyy";varsql="SELECT*FROMtable_1";//table_1hasa

c# - 如何在 Windows Phone 8 中获取捕获图像或存储图像的地理标记详细信息

我想从图像中获取有关地理位置的信息,如下图所示voidcam_Completed(objectsender,PhotoResulte){if(e.TaskResult==TaskResult.OK){ImagecameraImage=newImage();BitmapImagebImage=newBitmapImage();bImage.SetSource(e.ChosenPhoto);cameraImage.Source=bImage;e.ChosenPhoto.Position=0;ExifReaderreader=newExifReader(e.ChosenPhoto);doub

c# - Windows Phone 8.1 位置跟踪

我想实现一个持续将设备位置发送到网络服务的应用程序。查看文档,我找到了Geolocation类和一些讨论位置跟踪的文章:Howtocontinuouslytrackthephone'slocationforWindowsPhone8Howtorunlocation-trackingappsinthebackgroundforWindowsPhone8实现这些文章中讨论的两个示例项目时,我注意到geolocator_PositionChanged()事件不会在每次位置更新时触发。事件的两次执行之间存在延迟(大约10/15分钟)。奇怪的是,即使应用程序在前台执行(不仅在后台),也会发生这种

c# - C# 中的地理定位

我正在尝试开发一个应该类似于游戏的应用程序。用户将在城市中有一些位置,他必须在每个位置上做一些事情。为了跟踪用户的位置,我尝试使用带有以下代码的地理定位:Geolocatorgeolocator=newGeolocator();//geolocator.DesiredAccuracy=Windows.Devices.Geolocation.PositionAccuracy.High;geolocator.DesiredAccuracyInMeters=50;try{Geopositiongeoposition=awaitgeolocator.GetGeopositionAsync(Ti

c# - 已知地址时如何获取坐标?

我从AdamFreeman的书“MetroRevealed:BuildingWindows8appswithXAMLandC#”中派生/改编了以下代码,以在坐标已知时获取地址:publicstaticasyncTaskGetAddressForCoordinates(doublelatitude,doublelongitude){HttpClienthttpClient=newHttpClient{BaseAddress=newUri("http://nominatim.openstreetmap.org")};HttpResponseMessagehttpResult=awaitht

javascript - Firefox和Chrome用户关闭 “Physical Location”提示如何处理?

我正在使用Geolocation对象和getCurrentPosition()。你有没有看到每次使用getCurrentPosition时Firefox和Chrome都会提示这些消息?Chrome:Example.comwantstotrackyourphysicallocation[allow][deny][Xclose]火狐:Example.comwantstoknowyourlocation[ShareLocation][Don'tShare][Close]我的问题是:当用户不“允许”或“拒绝”位置选项而是关闭提示时如何处理?我有这个JAVASCRIPT代码,但是当用户关闭提示时