<?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: SimpleMarkerSymbol no longer formats outline style in 4.10 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100057#M9160</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not yet. I have to figure out who the contact is for my company.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2019 17:41:31 GMT</pubDate>
    <dc:creator>GlennErion</dc:creator>
    <dc:date>2019-02-22T17:41:31Z</dc:date>
    <item>
      <title>SimpleMarkerSymbol no longer formats outline style in 4.10</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100055#M9158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In 4.9, the following code creates a circle with a green dotted line as the outline when the map is clicked. In 4.10, it ignores:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #9876aa;"&gt;style&lt;/SPAN&gt;: &lt;SPAN style="color: #6a8759;"&gt;"short-dot"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset="utf-8"&amp;gt;
  &amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"&amp;gt;
  &amp;lt;title&amp;gt;Intro to ArcGIS API for JavaScript&amp;lt;/title&amp;gt;
  &amp;lt;style&amp;gt;
    html,
    body,
    #viewDiv {
      padding: 0;
      margin: 0;
      height: 100%;
      width: 100%;
    }
  &amp;lt;/style&amp;gt;
  &amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css"&amp;gt;
  &amp;lt;script src="https://js.arcgis.com/4.10/"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;script&amp;gt;
  require([
    "esri/Map",
    "esri/views/MapView",
    "esri/symbols/SimpleMarkerSymbol",
    "esri/Graphic"
  ], function (
    Map,
    MapView,
    SimpleMarkerSymbol,
    Graphic
  ) {

    var map = new Map({
      basemap: "topo"
    });

    var view = new MapView({
      container: "viewDiv",
      map: map,
      zoom: 10,
      center: [-118, 34],
      rotation: 30
    });

    const markSymbol = new SimpleMarkerSymbol({
      size: 20,
      color: "white",
      style: "circle",
      outline: {
        color: [56, 158, 0, 1],
        width: 2,
        style: "short-dot"
      }
    });
    view.on("click", function (event) {
      console.log(event)
      var symbolGraphic = new Graphic({geometry: event.mapPoint, symbol: markSymbol});
      view.graphics.add(symbolGraphic);
    });
  });
&amp;lt;/script&amp;gt;
&amp;lt;/html&amp;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;/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;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;/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 06:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100055#M9158</guid>
      <dc:creator>GlennErion</dc:creator>
      <dc:date>2021-12-11T06:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol no longer formats outline style in 4.10</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100056#M9159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glenn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Have you reported this bug to esri tech support so that it can be fixed in the 4.11 release coming next month?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2019 15:34:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100056#M9159</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-02-22T15:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol no longer formats outline style in 4.10</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100057#M9160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not yet. I have to figure out who the contact is for my company.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2019 17:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100057#M9160</guid>
      <dc:creator>GlennErion</dc:creator>
      <dc:date>2019-02-22T17:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol no longer formats outline style in 4.10</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100058#M9161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM style="font-size: medium;"&gt;From ESRI support:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: medium;"&gt;BUG-000119970:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: medium;"&gt;&lt;SPAN style="color: #000000; font-size: medium;"&gt;The indication on the bug is that is actually by design. The JavaScript API at v4.x was never intended to support dashed outlines for marker symbols, so it has been marked as resolved and closed. Unfortunately, you'll not be able to use the short-dot style in your picture marker symbols.&lt;/SPAN&gt;&lt;BR style="color: #000000; font-size: medium;" /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: medium;"&gt;The documentation says that it is supported and it worked up to and including 4.9.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2019 15:05:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100058#M9161</guid>
      <dc:creator>GlennErion</dc:creator>
      <dc:date>2019-02-25T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol no longer formats outline style in 4.10</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100059#M9162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glenn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Then you need to request an enhancement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2019 15:33:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-no-longer-formats-outline-style/m-p/100059#M9162</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-02-25T15:33:19Z</dc:date>
    </item>
  </channel>
</rss>

