<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi all, I'm a javascript developer, new to ARCgis, and wish to create a map using a mapid my GIS colleague has created in place of the general ESRI map. Would it be something like :    arcgisUtils.createMap(&amp;quot;8e42e164d4174da09f61fe0d3f206641&amp;quot;, &amp;quot;viewDiv&amp;quot;).t in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400992#M36912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/arcgis/utils",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/Graphic",&lt;BR /&gt; "esri/geometry/Point",&lt;BR /&gt; "esri/symbols/SimpleMarkerSymbol",&lt;BR /&gt; "esri/widgets/Search",&lt;BR /&gt; "esri/geometry/support/webMercatorUtils",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ],&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; function (Map, arcgisUtils, MapView, Graphic, Point, SimpleMarkerSymbol, Search, webMercatorUtils) {&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; var mapid = "d48f43130de5452ea67650cda98d6def";&lt;/P&gt;&lt;P&gt;arcgisUtils.createMap("8e42e164d4174da09f61fe0d3f206641", "viewDiv").then(function (response) { &lt;BR /&gt; &lt;BR /&gt; var map = response.map;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var view = new MapView({ container: "viewDiv", map: map, center: [-7.5, 52.205540], zoom: 10 });&lt;BR /&gt; var search = new Search({ view: view });&lt;BR /&gt; search.defaultSource.withinViewEnabled = false;&lt;BR /&gt; view.ui.add(search, "top-right");&lt;/P&gt;&lt;P&gt;view.on("click", function (evt) {&lt;BR /&gt; search.clear();&lt;BR /&gt; var markerSymbol = new SimpleMarkerSymbol({ color: [193, 7, 7], outline: { color: [255, 255, 255], width: 2} });&lt;BR /&gt; var lat = Math.round(evt.mapPoint.latitude * 10000000) / 10000000;&lt;BR /&gt; var lon = Math.round(evt.mapPoint.longitude * 10000000) / 10000000;&lt;BR /&gt; var point = new Point({ longitude: lon, latitude: lat });&lt;BR /&gt; var pointGraphic = new Graphic({ geometry: point, symbol: markerSymbol });&lt;BR /&gt; &lt;BR /&gt; view.graphics.removeAll();&lt;BR /&gt; view.graphics.add(pointGraphic);&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm getting javascript error:&amp;nbsp;&lt;SPAN class="" style="color: #222222; background-color: #fff0f0; margin-left: 4px;"&gt;&lt;SPAN class="" style="color: #545454; text-decoration: underline;"&gt;init.js:23&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;SPAN class="" style="color: red !important; background-color: #fff0f0;"&gt;GET &lt;SPAN class="" style="color: #545454; text-decoration: underline;"&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fjs.arcgis.com%2F4.3%2Fesri%2Farcgis%2Futils.js" rel="nofollow" target="_blank"&gt;http://js.arcgis.com/4.3/esri/arcgis/utils.js&lt;/A&gt;&lt;/SPAN&gt; 404 (Not Found)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jun 2017 11:17:41 GMT</pubDate>
    <dc:creator>MichealO_Muimhneachain</dc:creator>
    <dc:date>2017-06-08T11:17:41Z</dc:date>
    <item>
      <title>Hi all, I'm a javascript developer, new to ARCgis, and wish to create a map using a mapid my GIS colleague has created in place of the general ESRI map. Would it be something like :    arcgisUtils.createMap("8e42e164d4174da09f61fe0d3f206641", "viewDiv").t</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400992#M36912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/arcgis/utils",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/Graphic",&lt;BR /&gt; "esri/geometry/Point",&lt;BR /&gt; "esri/symbols/SimpleMarkerSymbol",&lt;BR /&gt; "esri/widgets/Search",&lt;BR /&gt; "esri/geometry/support/webMercatorUtils",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ],&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; function (Map, arcgisUtils, MapView, Graphic, Point, SimpleMarkerSymbol, Search, webMercatorUtils) {&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; var mapid = "d48f43130de5452ea67650cda98d6def";&lt;/P&gt;&lt;P&gt;arcgisUtils.createMap("8e42e164d4174da09f61fe0d3f206641", "viewDiv").then(function (response) { &lt;BR /&gt; &lt;BR /&gt; var map = response.map;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var view = new MapView({ container: "viewDiv", map: map, center: [-7.5, 52.205540], zoom: 10 });&lt;BR /&gt; var search = new Search({ view: view });&lt;BR /&gt; search.defaultSource.withinViewEnabled = false;&lt;BR /&gt; view.ui.add(search, "top-right");&lt;/P&gt;&lt;P&gt;view.on("click", function (evt) {&lt;BR /&gt; search.clear();&lt;BR /&gt; var markerSymbol = new SimpleMarkerSymbol({ color: [193, 7, 7], outline: { color: [255, 255, 255], width: 2} });&lt;BR /&gt; var lat = Math.round(evt.mapPoint.latitude * 10000000) / 10000000;&lt;BR /&gt; var lon = Math.round(evt.mapPoint.longitude * 10000000) / 10000000;&lt;BR /&gt; var point = new Point({ longitude: lon, latitude: lat });&lt;BR /&gt; var pointGraphic = new Graphic({ geometry: point, symbol: markerSymbol });&lt;BR /&gt; &lt;BR /&gt; view.graphics.removeAll();&lt;BR /&gt; view.graphics.add(pointGraphic);&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm getting javascript error:&amp;nbsp;&lt;SPAN class="" style="color: #222222; background-color: #fff0f0; margin-left: 4px;"&gt;&lt;SPAN class="" style="color: #545454; text-decoration: underline;"&gt;init.js:23&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;SPAN class="" style="color: red !important; background-color: #fff0f0;"&gt;GET &lt;SPAN class="" style="color: #545454; text-decoration: underline;"&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fjs.arcgis.com%2F4.3%2Fesri%2Farcgis%2Futils.js" rel="nofollow" target="_blank"&gt;http://js.arcgis.com/4.3/esri/arcgis/utils.js&lt;/A&gt;&lt;/SPAN&gt; 404 (Not Found)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 11:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400992#M36912</guid>
      <dc:creator>MichealO_Muimhneachain</dc:creator>
      <dc:date>2017-06-08T11:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hi all, I'm a javascript developer, new to ARCgis, and wish to create a map using a mapid my GIS colleague has created in place of the general ESRI map. Would it be something like :    arcgisUtils.createMap("8e42e164d4174da09f61fe0d3f206641", "viewDiv</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400993#M36913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; You should look at the 4.x API samples.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/webmap-basic/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/webmap-basic/index.html"&gt;Load a basic WebMap | ArcGIS API for JavaScript 4.3&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 12:08:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400993#M36913</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-06-08T12:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Hi all, I'm a javascript developer, new to ARCgis, and wish to create a map using a mapid my GIS colleague has created in place of the general ESRI map. Would it be something like :    arcgisUtils.createMap("8e42e164d4174da09f61fe0d3f206641", "viewDiv</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400994#M36914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Robert, the answer was under &amp;nbsp;"webmap"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 14:27:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hi-all-i-m-a-javascript-developer-new-to-arcgis/m-p/400994#M36914</guid>
      <dc:creator>MichealO_Muimhneachain</dc:creator>
      <dc:date>2017-06-08T14:27:33Z</dc:date>
    </item>
  </channel>
</rss>

