-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem loading a WMS #1
Comments
I think this actually belongs to https://github.com/omniscale/wmtsproxy/ |
Hi @olt, I'm still having the same issue my colleague reported, I can add the server, get the layers and select one of them but afterwards the tiles from the server are not shown as a basemap. |
What URLs are you sending to the WMTSProxy API? The following request gives me:
{
"layers": [
{
"llbbox": [
-180.0,
-90.0,
180.0,
90.0
],
"name": "WEB_MERCATOR",
"srs": [
"EPSG:3857"
],
"title": "WEB_MERCATOR"
},
{
"llbbox": [
-180.0,
-90.0,
180.0,
90.0
],
"name": "HYBRID_MERCATOR",
"srs": [
"EPSG:3857"
],
"title": "HYBRID_MERCATOR"
},
{
"llbbox": [
-180.0,
-90.0,
180.0,
90.0
],
"name": "SATELLITE_WM",
"srs": [
"EPSG:3857"
],
"title": "SATELLITE_WM"
}
],
"title": "Web Map Service - GeoWebCache",
"type": "wms"
} And I can add each of them with the following requests:
The tile request The source request for that tile goes to http://api.maps.vic.gov.au/geowebcacheWM/service/wms?SERVICE=WMS&&styles=&format=image%2Fpng&height=1184&bbox=14832452.4647,-5205055.87811,17728498.5924,-2309009.75044&transparent=True&layers=HYBRID_MERCATOR&service=WMS&width=1184&request=GetMap&srs=EPSG%3A3857&version=1.1.1 Can you compare these requests with the URLs CartoDB sends? |
…using the same URI path for the tile request you mentioned above: |
Are you still seeing requests to 192.168.100.82:8180? Can you remove the cached mapproxy configurations? |
Yes, that seems to work indeed 👍 |
It's hard for MapProxy to tell if a configuration actually makes sense. We could store a timestamp in the |
Yeah that could be. |
Yes. Old CSV entries won't have a timestamp and so they will not be recreated. We could also add the timestamp (if present) to the cache name. That way any cached tiles will also be ignored on |
Ok, I've implemented the change in the WMTSProxy repo: https://github.com/omniscale/wmtsproxy |
Following this issue with a GeoWebCache WMS layer that is not working when we add it to the editor we got this on the logs
On the other hand the Capabilities document is giving proper
GetMap
urls so it seems something internal on the proxy that produces that IP address.Any pointer on what could be wrong?
The text was updated successfully, but these errors were encountered: