<?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 Re: Logi analytics use of Javascript api in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391295#M36131</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had to comment out the&amp;nbsp;&lt;SPAN&gt;esri/widgets/Search" to get the map to show in the browser. The below is the basic widget code and functions, I had to comment out a number of items so the map would display. The featurlayer will display but I get no functionality.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; //"esri/widgets/Search",&lt;BR /&gt; "esri/layers/FeatureLayer",&lt;BR /&gt; "esri/renderers/UniqueValueRenderer",&lt;BR /&gt; "esri/symbols/SimpleLineSymbol",&lt;BR /&gt; "esri/renderers/ClassBreaksRenderer",&lt;BR /&gt; "dojo/dom",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ], function(&lt;BR /&gt; Map,&lt;BR /&gt; MapView,&lt;BR /&gt; FeatureLayer,&lt;BR /&gt; UniqueValueRenderer,&lt;BR /&gt; SimpleLineSymbol,&lt;BR /&gt; ClassBreaksRenderer,&lt;BR /&gt; Search,&lt;BR /&gt; domStyle,&lt;BR /&gt; dom&lt;BR /&gt; ) {&lt;BR /&gt; // *location of webservice for the click query*&lt;BR /&gt; var layer = new FeatureLayer({&lt;BR /&gt; url: " REMOVED URL ",&lt;BR /&gt; outFields: ["*"]&lt;BR /&gt; });&lt;BR /&gt; // *Base layer selection, change to open Street or other*&lt;BR /&gt; var map = new Map({&lt;BR /&gt; basemap: "streets",&lt;BR /&gt; layers: [layer]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; center: [-122.992, 45.524],&lt;BR /&gt; zoom: 10&lt;BR /&gt; });&lt;BR /&gt; &lt;BR /&gt; // Search widget&lt;BR /&gt; //var search = new Search({&lt;BR /&gt; //view: view&lt;BR /&gt; //});&lt;BR /&gt; //search.defaultSource.withinViewEnabled = false; // NO Limit search to visible map area&lt;BR /&gt; //view.ui.add(search, {position: "top-left", index: 0&lt;BR /&gt; //}); // Add to the view&lt;/P&gt;&lt;P&gt;// *Load camera layer*&lt;BR /&gt; map.add(layer);&lt;BR /&gt; &lt;BR /&gt; view.ui.add("info", "top-right");&lt;/P&gt;&lt;P&gt;// *Set up a click event handler and retrieve the screen x, y coordinates*&amp;nbsp;&lt;BR /&gt; view.on("click", function(evt) {&lt;BR /&gt; var screenPoint = {&lt;BR /&gt; x: evt.x,&lt;BR /&gt; y: evt.y&lt;BR /&gt; };&lt;BR /&gt; dom.byId("info").style.visibility = "hidden";&lt;BR /&gt; // *the hitTest() checks to see if any graphics in the view*&lt;BR /&gt; // *intersect the given screen x, y coordinates*&lt;/P&gt;&lt;P&gt;console.log(layer);&lt;BR /&gt; view.graphics.forEach(function(item, i){&lt;BR /&gt; console.log(i);&lt;BR /&gt; });&lt;BR /&gt; &lt;BR /&gt; view.hitTest(screenPoint)&lt;BR /&gt; .then(getGraphics);&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// function showPopup(address, pt) {&lt;BR /&gt; // view.popup.open({&lt;BR /&gt; // title: "Find Address Result",&lt;BR /&gt; // content: address + "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Lat: " + Math.round(pt.latitude * 100000)/100000 + " Lon: " + Math.round(pt.longitude * 100000)/100000,&lt;BR /&gt; // location: pt&lt;BR /&gt; // });&lt;BR /&gt; // }&lt;/P&gt;&lt;P&gt;// view.on("click", function(evt){&lt;BR /&gt; // search.clear();&lt;BR /&gt; // view.popup.clear();&lt;BR /&gt; // var locatorSource = search.defaultSource;&lt;BR /&gt; // locatorSource.locator.locationToAddress(evt.mapPoint)&lt;BR /&gt; // .then(function(response) {&lt;BR /&gt; // var address = response.address.Match_addr;&lt;BR /&gt; // *Show the address found*&lt;BR /&gt; // showPopup(address, evt.mapPoint);&lt;BR /&gt; // }, function(err) {&lt;BR /&gt; // *Show no address found*&lt;BR /&gt; // showPopup("No address found for this location.", evt.mapPoint);&lt;BR /&gt; // });&lt;/P&gt;&lt;P&gt;function getGraphics(response) {&lt;BR /&gt; // *the topmost graphic from the click location*&lt;BR /&gt; // *and display select attribute values from the*&lt;BR /&gt; // *graphic to the user*&lt;BR /&gt; &lt;BR /&gt; var graphic = response.results[0].graphic;&lt;BR /&gt; var attributes = graphic.attributes;&lt;/P&gt;&lt;P&gt;console.log(response);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; //* fields to be shown by query*&lt;BR /&gt; dom.byId("info").style.visibility = "visible";&lt;BR /&gt; dom.byId("contact").innerHTML = attributes.contactnam + "&amp;lt;br&amp;gt;" + attributes.Match_addr + "&amp;lt;br&amp;gt;" + attributes.phone + "&amp;lt;br&amp;gt;" + attributes.email;&lt;BR /&gt; dom.byId("areas").innerHTML = attributes.areas;&lt;BR /&gt; dom.byId("hours").innerHTML = attributes.camhrs;&lt;BR /&gt; dom.byId("additional").innerHTML = attributes.otherinfo;&lt;/P&gt;&lt;P&gt;// *symbolize all line segments with the given*&lt;BR /&gt; // *storm name with the same symbol*&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;view.then(function() {&lt;BR /&gt; layer.then(function() {&lt;BR /&gt; // *update the default renderer's*&lt;BR /&gt; // *The controls the webservice layer of interest*&lt;BR /&gt; // *symbol when the layer loads*&lt;BR /&gt; var renderer = layer.renderer.clone();&lt;BR /&gt; renderer.symbol.width = 4;&lt;BR /&gt; renderer.symbol.color = [128, 128, 128, 0.8];&lt;BR /&gt; renderer.symbol.cap = "round";&lt;BR /&gt; layer.renderer = renderer;&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Jul 2017 18:59:23 GMT</pubDate>
    <dc:creator>PaulClausen1</dc:creator>
    <dc:date>2017-07-10T18:59:23Z</dc:date>
    <item>
      <title>Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391293#M36129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone have experience using Logi Analytics and the API 4.3? I am having a difficult time trying to get any query functions to work in my app. The layer does show, but if I add any code, even if I include&amp;nbsp;"esri/widgets/Search", the map just dies. Adding a simple search widget doesn't work at all, even having a simple click on icon query fails. There is no interaction with my layer. I can pan and zoom and see the icons, but nothing else works....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 16:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391293#M36129</guid>
      <dc:creator>PaulClausen1</dc:creator>
      <dc:date>2017-07-10T16:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391294#M36130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post a&amp;nbsp;code sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 17:24:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391294#M36130</guid>
      <dc:creator>ThomasSolow</dc:creator>
      <dc:date>2017-07-10T17:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391295#M36131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had to comment out the&amp;nbsp;&lt;SPAN&gt;esri/widgets/Search" to get the map to show in the browser. The below is the basic widget code and functions, I had to comment out a number of items so the map would display. The featurlayer will display but I get no functionality.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; //"esri/widgets/Search",&lt;BR /&gt; "esri/layers/FeatureLayer",&lt;BR /&gt; "esri/renderers/UniqueValueRenderer",&lt;BR /&gt; "esri/symbols/SimpleLineSymbol",&lt;BR /&gt; "esri/renderers/ClassBreaksRenderer",&lt;BR /&gt; "dojo/dom",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ], function(&lt;BR /&gt; Map,&lt;BR /&gt; MapView,&lt;BR /&gt; FeatureLayer,&lt;BR /&gt; UniqueValueRenderer,&lt;BR /&gt; SimpleLineSymbol,&lt;BR /&gt; ClassBreaksRenderer,&lt;BR /&gt; Search,&lt;BR /&gt; domStyle,&lt;BR /&gt; dom&lt;BR /&gt; ) {&lt;BR /&gt; // *location of webservice for the click query*&lt;BR /&gt; var layer = new FeatureLayer({&lt;BR /&gt; url: " REMOVED URL ",&lt;BR /&gt; outFields: ["*"]&lt;BR /&gt; });&lt;BR /&gt; // *Base layer selection, change to open Street or other*&lt;BR /&gt; var map = new Map({&lt;BR /&gt; basemap: "streets",&lt;BR /&gt; layers: [layer]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; center: [-122.992, 45.524],&lt;BR /&gt; zoom: 10&lt;BR /&gt; });&lt;BR /&gt; &lt;BR /&gt; // Search widget&lt;BR /&gt; //var search = new Search({&lt;BR /&gt; //view: view&lt;BR /&gt; //});&lt;BR /&gt; //search.defaultSource.withinViewEnabled = false; // NO Limit search to visible map area&lt;BR /&gt; //view.ui.add(search, {position: "top-left", index: 0&lt;BR /&gt; //}); // Add to the view&lt;/P&gt;&lt;P&gt;// *Load camera layer*&lt;BR /&gt; map.add(layer);&lt;BR /&gt; &lt;BR /&gt; view.ui.add("info", "top-right");&lt;/P&gt;&lt;P&gt;// *Set up a click event handler and retrieve the screen x, y coordinates*&amp;nbsp;&lt;BR /&gt; view.on("click", function(evt) {&lt;BR /&gt; var screenPoint = {&lt;BR /&gt; x: evt.x,&lt;BR /&gt; y: evt.y&lt;BR /&gt; };&lt;BR /&gt; dom.byId("info").style.visibility = "hidden";&lt;BR /&gt; // *the hitTest() checks to see if any graphics in the view*&lt;BR /&gt; // *intersect the given screen x, y coordinates*&lt;/P&gt;&lt;P&gt;console.log(layer);&lt;BR /&gt; view.graphics.forEach(function(item, i){&lt;BR /&gt; console.log(i);&lt;BR /&gt; });&lt;BR /&gt; &lt;BR /&gt; view.hitTest(screenPoint)&lt;BR /&gt; .then(getGraphics);&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// function showPopup(address, pt) {&lt;BR /&gt; // view.popup.open({&lt;BR /&gt; // title: "Find Address Result",&lt;BR /&gt; // content: address + "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Lat: " + Math.round(pt.latitude * 100000)/100000 + " Lon: " + Math.round(pt.longitude * 100000)/100000,&lt;BR /&gt; // location: pt&lt;BR /&gt; // });&lt;BR /&gt; // }&lt;/P&gt;&lt;P&gt;// view.on("click", function(evt){&lt;BR /&gt; // search.clear();&lt;BR /&gt; // view.popup.clear();&lt;BR /&gt; // var locatorSource = search.defaultSource;&lt;BR /&gt; // locatorSource.locator.locationToAddress(evt.mapPoint)&lt;BR /&gt; // .then(function(response) {&lt;BR /&gt; // var address = response.address.Match_addr;&lt;BR /&gt; // *Show the address found*&lt;BR /&gt; // showPopup(address, evt.mapPoint);&lt;BR /&gt; // }, function(err) {&lt;BR /&gt; // *Show no address found*&lt;BR /&gt; // showPopup("No address found for this location.", evt.mapPoint);&lt;BR /&gt; // });&lt;/P&gt;&lt;P&gt;function getGraphics(response) {&lt;BR /&gt; // *the topmost graphic from the click location*&lt;BR /&gt; // *and display select attribute values from the*&lt;BR /&gt; // *graphic to the user*&lt;BR /&gt; &lt;BR /&gt; var graphic = response.results[0].graphic;&lt;BR /&gt; var attributes = graphic.attributes;&lt;/P&gt;&lt;P&gt;console.log(response);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; //* fields to be shown by query*&lt;BR /&gt; dom.byId("info").style.visibility = "visible";&lt;BR /&gt; dom.byId("contact").innerHTML = attributes.contactnam + "&amp;lt;br&amp;gt;" + attributes.Match_addr + "&amp;lt;br&amp;gt;" + attributes.phone + "&amp;lt;br&amp;gt;" + attributes.email;&lt;BR /&gt; dom.byId("areas").innerHTML = attributes.areas;&lt;BR /&gt; dom.byId("hours").innerHTML = attributes.camhrs;&lt;BR /&gt; dom.byId("additional").innerHTML = attributes.otherinfo;&lt;/P&gt;&lt;P&gt;// *symbolize all line segments with the given*&lt;BR /&gt; // *storm name with the same symbol*&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;view.then(function() {&lt;BR /&gt; layer.then(function() {&lt;BR /&gt; // *update the default renderer's*&lt;BR /&gt; // *The controls the webservice layer of interest*&lt;BR /&gt; // *symbol when the layer loads*&lt;BR /&gt; var renderer = layer.renderer.clone();&lt;BR /&gt; renderer.symbol.width = 4;&lt;BR /&gt; renderer.symbol.color = [128, 128, 128, 0.8];&lt;BR /&gt; renderer.symbol.cap = "round";&lt;BR /&gt; layer.renderer = renderer;&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 18:59:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391295#M36131</guid>
      <dc:creator>PaulClausen1</dc:creator>
      <dc:date>2017-07-10T18:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391296#M36132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;In AMD style coding your requires and var have to match up.&amp;nbsp;&lt;A class="link-titled" href="http://blogs.esri.com/esri/arcgis/2013/10/14/the-abcs-of-amd/" title="http://blogs.esri.com/esri/arcgis/2013/10/14/the-abcs-of-amd/" rel="nofollow noopener noreferrer" target="_blank"&gt;The abc’s of AMD | ArcGIS Blog&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;require&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/Map"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/views/MapView"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/widgets/Search"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/layers/FeatureLayer"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/renderers/UniqueValueRenderer"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/symbols/SimpleLineSymbol"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"esri/renderers/ClassBreaksRenderer"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"dojo/dom"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="string token"&gt;"dojo/domReady!"&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
&amp;nbsp; Map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; MapView&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; Search&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; FeatureLayer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; UniqueValueRenderer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; SimpleLineSymbol&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; ClassBreaksRenderer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp; dom
&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:56:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391296#M36132</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T17:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391297#M36133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that works... The simple little things... Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 19:32:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391297#M36133</guid>
      <dc:creator>PaulClausen1</dc:creator>
      <dc:date>2017-07-10T19:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Logi analytics use of Javascript api</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391298#M36134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, Don't forget to mark this question as answered then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 20:14:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/logi-analytics-use-of-javascript-api/m-p/391298#M36134</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-07-10T20:14:13Z</dc:date>
    </item>
  </channel>
</rss>

