计算Google地图的视口?

时间:2010-03-06 18:08:27

标签: c# api google-maps geocoding

我正在使用Google Local Search进行一些地理编码,并且需要能够在页面上设置google maps api v3对象的视口。

现在这很好,如果谷歌本地搜索为我提供了一个好的视口,就像它对邮政编码或街道一样,但是如果我放入一个栏的名称,例如。返回的视口非常大,因为本地搜索已找到许多匹配但已返回最佳。

我想在这种情况下计算自己的视口,并按以下方式进行:

result.Centre = new LatLon(double.Parse(lat),double.Parse(lon));
result.Span = new LatLon(0.006295d, 0.008407d);
string viewport = "{{\"center\":{{\"lat\":\"{0}\",\"lng\":\"{1}\"}},\"span\":{{\"lat\":\"{2}\",\"lng\":\"{3}\"}},\"sw\":{{\"lat\":\"{4}\",\"lng\":\"{5}\"}},\"ne\":{{\"lat\":\"{6}\",\"lng\":\"{7}\"}}}}";
//Calculate the south west by taking half the span and adding it to the centre
double swLat = result.Centre.Latitude + (result.Span.Latitude/2);
double swLon = result.Centre.Longitude + (result.Span.Longitude/2);
//and northeast corners by taking half the span and subtracting from the centre
double neLat = result.Centre.Latitude - (result.Span.Latitude/2);
double neLon = result.Centre.Longitude - (result.Span.Longitude/2);


//Fingers crossed :)
result.ViewPortJSON = string.Format(viewport, result.Centre.Latitude, result.Centre.Longitude,result.Span.Latitude, result.Span.Longitude, swLat, swLon,neLat, neLon);

问题是我得到了一些有效的json但谷歌地图缩小了,所以我可以看到整个世界。前端正在使用相同的代码,好像谷歌给了我视口,所以我不明白发生了什么。

有什么想法吗?我的计算错了吗?我尝试了整个范围(即假设它已经是一个半径)具有相同的效果。

提前致谢。

1 个答案:

答案 0 :(得分:1)

嘿,你不应该这样做:

double swLat = result.Centre.Latitude - (result.Span.Latitude/2); 

double swLon = result.Centre.Longitude - (result.Span.Longitude/2); 

//and northeast corners by taking half the span and subtracting from the centre 

double neLat = result.Centre.Latitude + (result.Span.Latitude/2); 

double neLon = result.Centre.Longitude + (result.Span.Longitude/2);