You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem on call of particular service in version 1.1.1
same problem on catalog and context
** check the getFeatureInfo have to work too
in config for a old service we have to put parameter version ans srs. If the parameter srs is in lower case, the call doesn't work. If the param SRS is in capital lettre, the call work.
problem on call of particular service in version 1.1.1
** check the getFeatureInfo have to work too
in config for a old service we have to put parameter version ans srs. If the parameter srs is in lower case, the call doesn't work. If the param SRS is in capital lettre, the call work.
Exemple 1: DOESN'T work
CONFIG (srs in lower)
{
id: '4',
title: 'SIGEOM',
url: 'https://servicesvectoriels.atlas.gouv.qc.ca/IDS_SGM_WMS/service.svc/get?',
crossOrigin: true,
version: "1.1.1",
queryFormat: {
html: '*'
},
queryParams:{
srs: 'EPSG:3857'
}
CALL =
https://servicesvectoriels.atlas.gouv.qc.ca/IDS_SGM_WMS/service.svc/get?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&srs=EPSG%3A3857&layers=SGM%3AMines_projets&version=1.1.1&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi%3A96&SRS=EPSG%3A3857&STYLES=&WIDTH=1088&HEIGHT=450&BBOX=-8792092.741474112%2C5699144.828942741%2C-7461476.953085765%2C6249491.43259601
Exemple 2, WORK fine
CONFIG (SRS in capital)
{
id: '4',
title: 'SIGEOM',
url: 'https://servicesvectoriels.atlas.gouv.qc.ca/IDS_SGM_WMS/service.svc/get?',
crossOrigin: true,
version: "1.1.1",
queryFormat: {
html: '*'
},
queryParams:{
SRS: 'EPSG:3857'
}
}
CALL=
https://servicesvectoriels.atlas.gouv.qc.ca/IDS_SGM_WMS/service.svc/get?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&SRS=EPSG%3A3857&layers=SGM%3AMines_projets&version=1.1.1&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi%3A96&STYLES=&WIDTH=1088&HEIGHT=450&BBOX=-8792092.741474112%2C5699144.828942741%2C-7461476.953085765%2C6249491.43259601
Please tell us about your environment:
chrome 77.0
master from 29 october AM
The text was updated successfully, but these errors were encountered: