csharp C#中的地理定位Google API

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp C#中的地理定位Google API相关的知识,希望对你有一定的参考价值。

AddressData address = new AddressData
{
	Address = "9450 Corkscrew Palms Circle",
	City = "Estero",
	State = "Florida",
	Zip = "33928"
};

var gls = new GoogleLocationService();
var latlong = gls.GetLatLongFromAddress(address);
var latitude = latlong.Latitude;
var longitude = latlong.Longitude;

Console.WriteLine("Latitude: {0}", latitude);
Console.WriteLine("Longitude: {0}", longitude);

以上是关于csharp C#中的地理定位Google API的主要内容,如果未能解决你的问题,请参考以下文章

使用 Google maps API 和 Google text Search 进行地理定位

谷歌地理定位 API 库

动态地理定位数据及其使用。 Phonegap 和 Google API

商店定位器 API + 地理位置

如何使用谷歌地理定位 API?

Google地理编码API无法识别某些邮政编码