After rotating the map, clicking on the map to get WMS service information is incorrect.
Closed this issue · 4 comments
JerckyLY commented
- Set the map rotation to a degree other than 0
- Click on the map to query the WMS service information, click on the feature can not be found, click on other wrong locations to find it
- It should be a problem with picking up coordinates after rotation, how to get the corresponding coordinates before rotation according to the error after rotation ?
Thanks in a lot
get wms info code:
var point = this._map.latLngToContainerPoint();
var size = this._map.getSize();
var params = {
request: "GetFeatureInfo",
service: "WMS",
srs: "EPSG:4326",
styles: this.wmsParams.styles,
transparent: this.wmsParams.transparent,
version: this.wmsParams.version,
format: this.wmsParams.format,
bbox: this._map.getBounds().toBBoxString(),
height: size.y,
width: size.x,
layers: layers,
query_layers: layers,
info_format: "application/json",
};
params[params.version === "1.3.0" ? "i" : "x"] = parseInt(point.x)
params[params.version === "1.3.0" ? "j" : "y"] = parseInt(point.y)
Raruto commented
Hi liuyang,
this value could also be incorrect (or at least for your use case):
var size = this._map.getSize();
I recommend you explore the L.Map
class (both in the core repository and here) to find the function that might be right for you:
Lines 28 to 190 in 48e97a6
PS: if you need dev support, try asking on stackoverflow.com too..
👋 Raruto
JerckyLY commented
Hi @Raruto
- When I use
map.setBearing(0)
it will query wms normally, but when IsetBeaing(angle > 0)
it will not query normally, in both cases. The value ofgetSize()
is the same. - I also tried to calculate the point after rotation that corresponds to the point without rotation, but it doesn't work.
- I don't know what to do anymore, can you give me an idea?
Thanks in a lot
the code:
var containerPoint = this._map.latLngToContainerPoint(latlng);
// get unRotate point
var angle = this._map.getBearing() * L.DomUtil.DEG_TO_RAD; //
var center = this._map._getPixelCenter();
var point = containerPoint.rotateFrom(-angle, center);
var size = this._map.getSize(),
params = {
request: "GetFeatureInfo",
service: "WMS",
srs: "EPSG:4326",
styles: this.wmsParams.styles,
transparent: this.wmsParams.transparent,
version: this.wmsParams.version,
format: this.wmsParams.format,
bbox: this._map.getBounds().toBBoxString(),
// bbox,
height: size.y,
width: size.x,
layers: layers,
query_layers: layers,
info_format: "application/json",
}
params[params.version === "1.3.0" ? "i" : "x"] = parseInt(point.x)
params[params.version === "1.3.0" ? "j" : "y"] = parseInt(point.y)
Raruto commented
I don't know what to do anymore, can you give me an idea?
Honestly?
- spend some time getting into the code (it's open source, yours.. ?)
- ask to a broader audience: stackoverflow.com
- hire an external professional gis/developer
Your code also depends on:
this._map.getBounds()
which could cause further problems, but really, it depends on your goal/context.
Frankly, this repo contains difficult notions (unless is your daily job..), I'm not going to get into the code just because you ask..
👋 Raruto