Failed to load ArcGIS JS API polar satellite map The Next CEO of Stack Overflowshow message if...
Why am I getting "Static method cannot be referenced from a non static context: String String.valueOf(Object)"?
Could a dragon use its wings to swim?
Film where the government was corrupt with aliens, people sent to kill aliens are given rigged visors not showing the right aliens
Aggressive Under-Indexing and no data for missing index
Is there a way to save my career from absolute disaster?
Reshaping json / reparing json inside shell script (remove trailing comma)
Players Circumventing the limitations of Wish
Expressing the idea of having a very busy time
What flight has the highest ratio of timezone difference to flight time?
Are the names of these months realistic?
Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?
What was Carter Burke's job for "the company" in Aliens?
"Eavesdropping" vs "Listen in on"
Audio Conversion With ADS1243
Scary film where a woman has vaginal teeth
what's the use of '% to gdp' type of variables?
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Graph of the history of databases
Does destroying a Lich's phylactery destroy the soul within it?
Yu-Gi-Oh cards in Python 3
Can you teleport closer to a creature you are Frightened of?
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
Can I calculate next year's exemptions based on this year's refund/amount owed?
How did Beeri the Hittite come up with naming his daughter Yehudit?
Failed to load ArcGIS JS API polar satellite map
The Next CEO of Stack Overflowshow message if map service unavailableDefining spatial reference for WMS layer in ArcGIS API for JavaScript?Basemap layer disappear on print. Only happens with max zoomProblems with matching vector data with raster dataArcGIS Server config to allow ArcGIS JavaScript printing?What SRS does leaflet use when it creates new markers?ArcGIS JavaScript PrintTask Failed to create layer from service atNot Able to See Feature Layer With Different Spatial reference On the API Base MapArcGIS returns “IconSymbol3DLayer failed to load” when configuring a PictureMarkerSymbolFailed to load ArcGIS JS API satellite map with polar projection
I am trying to draw satellite map with polar (Arctic) projection using ArcGIS JS API. Firstly I load default (Mercator) satellite map and it works fine. Then I change map spatialReference to polar the following way:
require([
"esri/Map",
"esri/views/MapView",
"esri/geometry/Polygon",
"esri/geometry/SpatialReference",
"esri/layers/FeatureLayer"
],
function (Map, MapView) {
var map = new Map({
basemap: "satellite"
});
var viewSpatialReference = 3995;
var centerPoint = {
x: 0,
y: 0,
spatialReference: viewSpatialReference
};
var view = new MapView({
container: "map",
map: map,
spatialReference: viewSpatialReference,
center: centerPoint,
scale: 2000
});
});
When I try to load this map in browser, I get blank map and two errors in console
[esri.views.2d.layers.TileLayerView2D] #resolve() Failed to resolve layer view (layer title: 'World Imagery', id: 'satellite-base-layer') message: "The spatial reference of this layer does not meet the requirements of the view"
dojo.js:310 [esri.views.LayerViewFactory] Failed to create view for layer 'World Imagery, id:satellite-base-layer' of type 'tile'. message: "The spatial reference of this layer does not meet the requirements of the view"
Does anyone have experience working with ArcGIS JS for Arctic region? My original idea was to redraw basic satellite map using ArcGIS; I hope it is possible.
coordinate-system arcgis-javascript-api arctic
add a comment |
I am trying to draw satellite map with polar (Arctic) projection using ArcGIS JS API. Firstly I load default (Mercator) satellite map and it works fine. Then I change map spatialReference to polar the following way:
require([
"esri/Map",
"esri/views/MapView",
"esri/geometry/Polygon",
"esri/geometry/SpatialReference",
"esri/layers/FeatureLayer"
],
function (Map, MapView) {
var map = new Map({
basemap: "satellite"
});
var viewSpatialReference = 3995;
var centerPoint = {
x: 0,
y: 0,
spatialReference: viewSpatialReference
};
var view = new MapView({
container: "map",
map: map,
spatialReference: viewSpatialReference,
center: centerPoint,
scale: 2000
});
});
When I try to load this map in browser, I get blank map and two errors in console
[esri.views.2d.layers.TileLayerView2D] #resolve() Failed to resolve layer view (layer title: 'World Imagery', id: 'satellite-base-layer') message: "The spatial reference of this layer does not meet the requirements of the view"
dojo.js:310 [esri.views.LayerViewFactory] Failed to create view for layer 'World Imagery, id:satellite-base-layer' of type 'tile'. message: "The spatial reference of this layer does not meet the requirements of the view"
Does anyone have experience working with ArcGIS JS for Arctic region? My original idea was to redraw basic satellite map using ArcGIS; I hope it is possible.
coordinate-system arcgis-javascript-api arctic
add a comment |
I am trying to draw satellite map with polar (Arctic) projection using ArcGIS JS API. Firstly I load default (Mercator) satellite map and it works fine. Then I change map spatialReference to polar the following way:
require([
"esri/Map",
"esri/views/MapView",
"esri/geometry/Polygon",
"esri/geometry/SpatialReference",
"esri/layers/FeatureLayer"
],
function (Map, MapView) {
var map = new Map({
basemap: "satellite"
});
var viewSpatialReference = 3995;
var centerPoint = {
x: 0,
y: 0,
spatialReference: viewSpatialReference
};
var view = new MapView({
container: "map",
map: map,
spatialReference: viewSpatialReference,
center: centerPoint,
scale: 2000
});
});
When I try to load this map in browser, I get blank map and two errors in console
[esri.views.2d.layers.TileLayerView2D] #resolve() Failed to resolve layer view (layer title: 'World Imagery', id: 'satellite-base-layer') message: "The spatial reference of this layer does not meet the requirements of the view"
dojo.js:310 [esri.views.LayerViewFactory] Failed to create view for layer 'World Imagery, id:satellite-base-layer' of type 'tile'. message: "The spatial reference of this layer does not meet the requirements of the view"
Does anyone have experience working with ArcGIS JS for Arctic region? My original idea was to redraw basic satellite map using ArcGIS; I hope it is possible.
coordinate-system arcgis-javascript-api arctic
I am trying to draw satellite map with polar (Arctic) projection using ArcGIS JS API. Firstly I load default (Mercator) satellite map and it works fine. Then I change map spatialReference to polar the following way:
require([
"esri/Map",
"esri/views/MapView",
"esri/geometry/Polygon",
"esri/geometry/SpatialReference",
"esri/layers/FeatureLayer"
],
function (Map, MapView) {
var map = new Map({
basemap: "satellite"
});
var viewSpatialReference = 3995;
var centerPoint = {
x: 0,
y: 0,
spatialReference: viewSpatialReference
};
var view = new MapView({
container: "map",
map: map,
spatialReference: viewSpatialReference,
center: centerPoint,
scale: 2000
});
});
When I try to load this map in browser, I get blank map and two errors in console
[esri.views.2d.layers.TileLayerView2D] #resolve() Failed to resolve layer view (layer title: 'World Imagery', id: 'satellite-base-layer') message: "The spatial reference of this layer does not meet the requirements of the view"
dojo.js:310 [esri.views.LayerViewFactory] Failed to create view for layer 'World Imagery, id:satellite-base-layer' of type 'tile'. message: "The spatial reference of this layer does not meet the requirements of the view"
Does anyone have experience working with ArcGIS JS for Arctic region? My original idea was to redraw basic satellite map using ArcGIS; I hope it is possible.
coordinate-system arcgis-javascript-api arctic
coordinate-system arcgis-javascript-api arctic
asked 6 mins ago
QuarKQuarK
113
113
add a comment |
add a comment |
0
active
oldest
votes
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317296%2ffailed-to-load-arcgis-js-api-polar-satellite-map%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317296%2ffailed-to-load-arcgis-js-api-polar-satellite-map%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown