<?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: Label a Multipoint Layer in ArcGIS JavaScript API in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1030848#M71875</link>
    <description>&lt;P&gt;Is there somewhere that this lack of support for Multipoint in the ArcGIS JavaScript API is stated? If that is indeed the case I think you should clarify in the documentation. There is a&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Multipoint.html" target="_self"&gt;Multipoint&lt;/A&gt; geometry class and certainly no mention any support limitations for labelling or otherwise there. The closest I've seen is a &lt;A href="https://support.esri.com/en/technical-article/000019837" target="_self"&gt;Technical Article for ArcGIS Online&lt;/A&gt; that refers to lack of support for Multipoint in the context of editing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Feb 2021 00:42:16 GMT</pubDate>
    <dc:creator>RyanSutcliffe</dc:creator>
    <dc:date>2021-02-26T00:42:16Z</dc:date>
    <item>
      <title>Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1027741#M71801</link>
      <description>&lt;P&gt;I would like to label features from a &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Multipoint.html" target="_self"&gt;Multipoint&lt;/A&gt; FeatureLayer in ArcGIS JavaScript API 4x. Is this possible? I can't get it to work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I've tried:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let url = [my multipoint service layer url]

  var layer = new FeatureLayer({
    url: url,
    opacity: 0.9,
    renderer: {
      type: "simple", //autocasts
      symbol: {
        type: "simple-marker", //autocasts
        size: 3,
        color: "white",
      },
    },
    title: "Site Labels",
    labelingInfo : {
      labelExpressionInfo: {expression: "$feature.[myfield]"},
      symbol: {
        type: "text",
        color: "black",
        haloSize: 1,
        haloColor: "white"
      }
    },
  });

  
  var map = new Map({
    basemap: "topo",
    layers: [layer]
  });&lt;/LI-CODE&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Basically, the same way you would &lt;A href="https://developers.arcgis.com/javascript/latest/labeling/" target="_self"&gt;label a simple point layer&lt;/A&gt;. For a point layer this will work. No labels appear for a multipoint layer. Can't find anything online besides the &lt;A href="https://developers.arcgis.com/javascript/latest/labeling/" target="_self"&gt;statement&lt;/A&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BLOCKQUOTE&gt;&lt;DIV&gt;&lt;SPAN&gt;Currently a feature can only have one label. If a feature satisfies the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-LabelClass.html#where" target="_blank" rel="noopener"&gt;where&amp;nbsp;&lt;/A&gt;&lt;SPAN&gt;condition of multiple&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-LabelClass.html" target="_blank" rel="noopener"&gt;LabelClasses&lt;/A&gt;&lt;SPAN&gt;, then only the label corresponding to the first matching&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-LabelClass.html" target="_blank" rel="noopener"&gt;LabelClass&amp;nbsp;&lt;/A&gt;&lt;SPAN&gt;is displayed.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV&gt;&lt;SPAN&gt;Which might mean that with multipoint point layers we're out of luck?&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Feb 2021 18:36:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1027741#M71801</guid>
      <dc:creator>RyanSutcliffe</dc:creator>
      <dc:date>2021-02-17T18:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1028764#M71827</link>
      <description>&lt;P&gt;ESRI Canada got back to me. They've logged a bug (&lt;I&gt;&lt;SPAN&gt;BUG-000137586&amp;nbsp;Labels for Multipoints Fail to Render in Javascript API 4.18)&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;for this. Just in case anyone else comes across same issue.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 22:38:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1028764#M71827</guid>
      <dc:creator>RyanSutcliffe</dc:creator>
      <dc:date>2021-02-19T22:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1030590#M71867</link>
      <description>&lt;P&gt;Thanks for getting this issue logged. We currently do not support Multipoint geometries by design, but this issue will help drive the enhancement request.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 18:35:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1030590#M71867</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2021-02-25T18:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1030848#M71875</link>
      <description>&lt;P&gt;Is there somewhere that this lack of support for Multipoint in the ArcGIS JavaScript API is stated? If that is indeed the case I think you should clarify in the documentation. There is a&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Multipoint.html" target="_self"&gt;Multipoint&lt;/A&gt; geometry class and certainly no mention any support limitations for labelling or otherwise there. The closest I've seen is a &lt;A href="https://support.esri.com/en/technical-article/000019837" target="_self"&gt;Technical Article for ArcGIS Online&lt;/A&gt; that refers to lack of support for Multipoint in the context of editing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 00:42:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1030848#M71875</guid>
      <dc:creator>RyanSutcliffe</dc:creator>
      <dc:date>2021-02-26T00:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1052637#M72804</link>
      <description>&lt;P&gt;Any idea when this will be fixed? As this also affects the new Map Viewer in AGOL, my layer doesn't get labelled... Thx!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 09:32:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1052637#M72804</guid>
      <dc:creator>AnninaHirschiWyss</dc:creator>
      <dc:date>2021-04-29T09:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1122692#M75473</link>
      <description>&lt;P&gt;I would have thought this would have been fixed by now (12/3/2021) since we just had a new release of AGOL.&amp;nbsp; &amp;nbsp;I will also submit a bug from our organization.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 22:58:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1122692#M75473</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-03T22:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1198413#M78149</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Any idea when this will be fixed? ESRI JS API 4.24 still not working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;message&lt;/SPAN&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;"Unable to create labels for Feature Layer, esriGeometryMultipoint is not supported"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;name&lt;/SPAN&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;"mapview-labeling:unsupported-geometry-type"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 09:01:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1198413#M78149</guid>
      <dc:creator>KrzysztofNoga</dc:creator>
      <dc:date>2022-08-02T09:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1363774#M83192</link>
      <description>&lt;P&gt;It looks like it’s in product plan now… hope it comes soon and will fix this one as well: &lt;A href="https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800" target="_blank"&gt;https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 20:55:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1363774#M83192</guid>
      <dc:creator>AnninaHirschiWyss</dc:creator>
      <dc:date>2023-12-21T20:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1545609#M85818</link>
      <description>&lt;P&gt;Oh my giggles. I can't believe this, but yet I can.&amp;nbsp;This is a huge issue for my organization. Support all your geometries ESRI!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 14:27:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1545609#M85818</guid>
      <dc:creator>JwHayes</dc:creator>
      <dc:date>2024-10-04T14:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1546051#M85825</link>
      <description>&lt;P&gt;The Bug&amp;nbsp;&lt;A href="https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800" target="_blank"&gt;https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800&lt;/A&gt; is considered now as "Known Limit", is there really no way to fix this?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 07:37:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1546051#M85825</guid>
      <dc:creator>AnninaHirschiWyss</dc:creator>
      <dc:date>2024-10-07T07:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1546054#M85826</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169842"&gt;@Noah-Sager&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;some of the related issues logged are "not addressed", "known limit"... Could you give some priority to this issue? It is rather important for us, as &lt;A href="https://support.esri.com/en-us/knowledge-base/problem-unable-to-add-multipoint-features-in-an-arcgis--000019837" target="_self"&gt;converting multipoints to single points&lt;/A&gt; is not an option (we have a related table to the feature and this would disturb the data integrity...)&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/bug/unable-to-add-points-in-a-multipoint-feature-service-in-bug-000104054" target="_blank"&gt;https://support.esri.com/en-us/bug/unable-to-add-points-in-a-multipoint-feature-service-in-bug-000104054&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800" target="_blank"&gt;https://support.esri.com/en-us/bug/labels-on-multipoint-layers-do-not-display-in-the-new-m-bug-000131800&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And one "in product plan" since more than 3 years... &lt;A href="https://support.esri.com/en-us/bug/multipoint-labels-fail-to-render-in-an-arcgis-api-for-j-bug-000137586" target="_blank"&gt;https://support.esri.com/en-us/bug/multipoint-labels-fail-to-render-in-an-arcgis-api-for-j-bug-000137586&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And one "under consideration" since more than 3 years... &lt;A href="https://support.esri.com/en-us/bug/there-are-problems-with-adding-or-submitting-multipoint-bug-000142193" target="_blank"&gt;https://support.esri.com/en-us/bug/there-are-problems-with-adding-or-submitting-multipoint-bug-000142193&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 08:13:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1546054#M85826</guid>
      <dc:creator>AnninaHirschiWyss</dc:creator>
      <dc:date>2024-10-07T08:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Label a Multipoint Layer in ArcGIS JavaScript API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1550565#M85925</link>
      <description>&lt;P&gt;Crazy, how self-contradictory those&amp;nbsp;individual status values are. We have also various customers asking about that feature.. nothing has changed since 3+ years.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 18:09:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/label-a-multipoint-layer-in-arcgis-javascript-api/m-p/1550565#M85925</guid>
      <dc:creator>SebastianFrey1</dc:creator>
      <dc:date>2024-10-21T18:09:47Z</dc:date>
    </item>
  </channel>
</rss>

