我正在尝试向我的地理服务器发出请求,以检索地图上用户点击附近的功能。
地图占据了所有空间。因此我以这种方式计算了 BBOX:
region = mMap.getProjection().getVisibleRegion().latLngBounds;
double left = region.southwest.longitude;
double top = region.northeast.latitude;
double right = region.northeast.longitude;
double bottom = region.southwest.latitude;
宽度和高度取如下:
mMapFragment.getView().getWidth();
mMapFragment.getView().getHeight();
而 X 和 Y 参数按以下方式计算:
Point click = mMap.getProjection().toScreenLocation(latLng);
其中 latLng 是来自 onMapClick(LatLng) 事件的点(此处参考:https ://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.OnMapClickListener )。
我获得的结果 URL 是:
http://localhost/geoserver/sindot/wms?service=WMS&request=GetFeatureInfo&info_format=application%2Fjson&version=1.1.1&srs=EPSG%3A3857&bbox=1222173.74033,5056403.44084,1222174.11356,5056403.7028&query_layers=sindot:verticale&layers=sindot:verticale&feature_count=3&styles=tabletb3lab&width=2048&height=1262&x=1441&y=503
问题是服务器总是返回一个空响应,即使我知道那里有特征,因为我可以看到地图上的点。会是什么呢?
提前致谢。