всем привет, подскажите, кто сталкивался
установил Arcgis JS API локально, на сервере согласно по мануалу. Изменил имя хоста на доменное имя в двух местах: dojo.js & init.js
Но веб приложений в упор не видят не которые файлы с сервера (например: MapView.js и WebMap.js)
dojo.js:24 GET https://esri/views/MapView.js net::ERR_NAME_NOT_RESOLVED
dojo.js:24 GET https://esri/WebMap.js net::ERR_NAME_NOT_RESOLVED
где что еще менять надо ?
исходник для проверки
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<!--
ArcGIS API for JavaScript, https://js.arcgis.com
For more information about the webmap-basic sample, read the original sample description at developers.arcgis.com.
https://developers.arcgis.com/javascript/latest/sample-code/webmap-basic/index.html
-->
<title>Test</title>
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<link
rel="stylesheet"
href="https://gis.kgp.kz/4.16/esri/themes/light/main.css"
/>
<script src="https://gis.kgp.kz/4.16/dojo/dojo.js"></script>
<script>
require(["esri/views/MapView", "esri/WebMap", "esri/config"], function (
MapView,
WebMap,
esriConfig
) {
/************************************************************
* Creates a new WebMap instance. A WebMap must reference
* a PortalItem ID that represents a WebMap saved to
* arcgis.com or an on-premise portal.
* ffffggggjjjddddaaaa
* To load a WebMap from an on-premise portal, set the portal
* url with esriConfig.portalUrl.
************************************************************/
esriConfig.portalUrl = "https://gis.kgp.kz/portal";
var webmap = new WebMap({
portalItem: {
// autocasts as new PortalItem()
id:"0ce4b182600b4ea78afdcda6ec8428e8"
}
});
/************************************************************
* Set the WebMap instance to the map property in a MapView.
************************************************************/
var view = new MapView({
map: webmap,
container: "viewDiv"
});
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>