<?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: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent) in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678445#M63264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was talking about message event that used to be there for StreamLayer which is not in 4.6 now, to access the raw data as it is streaming in through a stream server&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jan 2018 21:27:49 GMT</pubDate>
    <dc:creator>BanchanaPandey</dc:creator>
    <dc:date>2018-01-19T21:27:49Z</dc:date>
    <item>
      <title>Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678441#M63260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Javascript API&lt;/P&gt;&lt;P&gt;The stream layer is working as expected. I created an Info Template that displays a pop-up information window when the point was clicked on. So I can see the raw data fields inside the info template pop-up window. But I'm trying to access the raw data fields from within my javascript code. Can anyone provide a snippet of how this is done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 14:37:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678441#M63260</guid>
      <dc:creator>MikeCrook</dc:creator>
      <dc:date>2015-07-17T14:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678442#M63261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After much trying... I found that this data can be accessed through the stream layer "on" event by way of event return handler then using the graphics object of the stream layer. This took some work for being a newbie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 18:41:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678442#M63261</guid>
      <dc:creator>MikeCrook</dc:creator>
      <dc:date>2015-08-24T18:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678443#M63262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;are you using the latest version of jsapi 4.6 for Stream Layer? I am trying to achieve something similar but the api doesn't have much documentation on stream layers events. i tried using stramLayer.on("message",function (){})) but it is not working. There are no events on graphics in the latest 4.6 documentated in the api site. Can you please share more details on how you accomplished this?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 20:03:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678443#M63262</guid>
      <dc:creator>BanchanaPandey</dc:creator>
      <dc:date>2018-01-18T20:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678444#M63263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not knowing exactly what you are trying to perform... My last successful attempt was on version 3.XX. I was able to access some of this information by using the InfoTemplate Object (now called PopTemplate but still works similar on 4.X) during the initialization of the StreamLayer object. This allowed me use the Stream Layer object's click event:&amp;nbsp; streamLayerObj.on('click', function(evt){}); The 'evt' object within the function has an 'attributes' property that&amp;nbsp;provides access to this information. For instance, 'evt.attributes.MyMetaData'. It should work in a similar fashion.Good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 21:19:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678444#M63263</guid>
      <dc:creator>MikeCrook</dc:creator>
      <dc:date>2018-01-18T21:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678445#M63264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was talking about message event that used to be there for StreamLayer which is not in 4.6 now, to access the raw data as it is streaming in through a stream server&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 21:27:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678445#M63264</guid>
      <dc:creator>BanchanaPandey</dc:creator>
      <dc:date>2018-01-19T21:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Stream Layer - I'm trying to access the raw meta data through the stream layer (via websockets &amp; geoevent)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678446#M63265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found that is a bug on jsapi 4.6 version where on data received on streamlayer will not work. this has been confirmed as bug.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Feb 2018 05:51:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/stream-layer-i-m-trying-to-access-the-raw-meta/m-p/678446#M63265</guid>
      <dc:creator>BanchanaPandey</dc:creator>
      <dc:date>2018-02-11T05:51:53Z</dc:date>
    </item>
  </channel>
</rss>

