Skip to content

Commit

Permalink
fix(config): change mercator basemap projections
Browse files Browse the repository at this point in the history
apply the secret latestWkid property to prevent print service
from mangling WMS layers when viewed in mercator

Closes #8782
  • Loading branch information
james-rae committed May 25, 2015
1 parent 7e85afa commit e1f5007
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriWorld.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
},
{
Expand All @@ -229,7 +230,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriPhysical.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
},
{
Expand All @@ -247,7 +249,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriRelief.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
},
{
Expand All @@ -265,7 +268,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriStreet.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
},
{
Expand All @@ -283,7 +287,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriTerrain.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
},
{
Expand All @@ -301,7 +306,8 @@
"tileSchema": "ESRI_World_AuxMerc_3857",
"description": "@@config.basemaps.baseEsriTopo.description",
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
}
],
Expand Down Expand Up @@ -549,7 +555,8 @@
"xmax": -10471824.465,
"ymax": 9225974.5022,
"spatialReference": {
"wkid": 102100
"wkid": 102100,
"latestWkid": 3857
}
}
},
Expand Down

0 comments on commit e1f5007

Please sign in to comment.