Hi all, I'm working within a corporate environment that is using ArcGIS Server (v10.2.2). I am a newbie trying to work with ArcGIS API for Javascript (v3.9) to create custom map applications. I can't seem to get a basic map up and running. For example, when I write this code:
<SPAN style="color: #303030;"><!DOCTYPE html></SPAN><BR /><SPAN style="color: #303030;"><html></SPAN><BR /><SPAN style="color: #303030;"><head></SPAN><BR /><SPAN style="color: #303030;"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></SPAN><BR /><SPAN style="color: #303030;"><meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"></SPAN><BR /><SPAN style="color: #303030;"><title></title></SPAN><BR /><SPAN style="color: #303030;"><link rel="stylesheet" href="MYDOMAINHERE.COM/3.11/esri/css/esri.css"></SPAN><BR /><SPAN style="color: #303030;"><style></SPAN><BR /><SPAN style="color: #303030;"> html, body, #map {</SPAN><BR /><SPAN style="color: #303030;"> height: 100%; width: 100%; margin: 0; padding: 0; </SPAN><BR /><SPAN style="color: #303030;"> }</SPAN><BR /><SPAN style="color: #303030;"></style></SPAN><BR /><BR /><SPAN><script src="</SPAN><A class="jive-link-external-small" href="http://MYDOMAINHERE.COM/3.9compact" rel="nofollow noopener noreferrer" target="_blank">http://MYDOMAINHERE.COM/3.9compact</A><SPAN>"></script></SPAN><BR /><script><BR /> var map;<BR /><BR /> require(["esri/map", "esri/layers/ArcGISTiledMapServiceLayer", "dojo/domReady!"],<BR /> function(Map, Tiled) {<BR /> map = new Map("map");<BR /><BR /> var tiled = new Tiled("MYDOMAINHERE.COM/arcgis/rest/services/BaseMaps/OURCONTENT");<BR /> map.addLayer(tiled);<BR /> }<BR /> );<BR /> </script><BR /> </head><BR /> <body><BR /> <div id="map"></div><BR /> </body><BR /> </html>
I get the basemap map tiles all disjointed like so (re-created in Photoshop for illustration purposes😞

Is it possible that the coordinates are wrong? Our server is using ArcGIS with 4326(WGS84). Again, I am an extreme newbie, so I am not sure I am using the correct language here. Thanks for any tips and advice on how to troubleshoot this.