-
Notifications
You must be signed in to change notification settings - Fork 676
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
Esri.OceanBasemap not displaying #493
Comments
From my side tiles are loaded on the demo page right now. Do you confirm ? |
It is not working for me either and a downstream CI is also failing, with error 500. |
Demo page is calling https://server.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer/tile/7/44/59
Did you test with one IP or multiple ? Maybe your IP si blocked due to traffic limit from esri ? |
This is from my local laptop, same with and without VPN. The same response from another machine elsewhere (via ssh). The CI that is failing in xyzservices is running on GHA, so completely detached from that. May it be that it is cached on your side? |
'k got the 404 after testing from three different IPs. This patch should do the trick : diff --git a/leaflet-providers.js b/leaflet-providers.js
index a7ef138..47b9259 100644
--- a/leaflet-providers.js
+++ b/leaflet-providers.js
@@ -469,7 +469,7 @@
},
OceanBasemap: {
options: {
- variant: 'Ocean_Basemap',
+ variant: 'Ocean/World_Ocean_Base',
maxZoom: 13,
attribution: '{attribution.Esri} — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri'
} PR is on the way. |
I noticed that the map from Esri.OceanBasemap is not displaying (see provider demo page here). Perhaps it's due to Esri moving from an old to a new OceanBasemap? I was able to get around this issue by manually specifying the path to the new version of the basemap and reference layer.
The text was updated successfully, but these errors were encountered: