<?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 Negative Buffer Web AppBuilder in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789995#M3989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I modify the Situation Awareness widget in Web AppBuilder Developer to take a negative buffer value? or maybe an option to do an inside buffer vs. outside buffer or both if entering a positive buffer value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a solution to do a negative buffer on a land parcel polygon to show a 12 foot setback line for constructing structures. A structure can't be closer than 12 feet to the property line. I currently use both the Situation Awareness widget and Developer version of Web AppBuilder. If the widget could take a negative value, it would be an easy way to show the setback so a line could be sketched over it with a drawing widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 May 2018 13:48:18 GMT</pubDate>
    <dc:creator>GeraldStanuch</dc:creator>
    <dc:date>2018-05-25T13:48:18Z</dc:date>
    <item>
      <title>Negative Buffer Web AppBuilder</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789995#M3989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I modify the Situation Awareness widget in Web AppBuilder Developer to take a negative buffer value? or maybe an option to do an inside buffer vs. outside buffer or both if entering a positive buffer value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a solution to do a negative buffer on a land parcel polygon to show a 12 foot setback line for constructing structures. A structure can't be closer than 12 feet to the property line. I currently use both the Situation Awareness widget and Developer version of Web AppBuilder. If the widget could take a negative value, it would be an easy way to show the setback so a line could be sketched over it with a drawing widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 13:48:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789995#M3989</guid>
      <dc:creator>GeraldStanuch</dc:creator>
      <dc:date>2018-05-25T13:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Negative Buffer Web AppBuilder</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789996#M3990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerald,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The widgets settings dialog is set to not allow negative numbers but you can edit the widgets config.json manually to set the bufferRange minimum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"bufferRange": {&lt;BR /&gt;&amp;nbsp; "minimum": -30,&lt;BR /&gt;&amp;nbsp; "_default": 0,&lt;BR /&gt;&amp;nbsp; "maximum": 100&lt;BR /&gt; },&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 18:59:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789996#M3990</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-25T18:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Negative Buffer Web AppBuilder</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789997#M3991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed the config but it is not reflected in the widget interface within the running app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 19:44:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789997#M3991</guid>
      <dc:creator>GeraldStanuch</dc:creator>
      <dc:date>2018-05-25T19:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Negative Buffer Web AppBuilder</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789998#M3992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerald,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You are correct. You will have to modify this line in the Widget.js file.&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;dist1 &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;dist1 &lt;SPAN class="operator token"&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;parseFloat&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;config&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;bufferRange&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;minimum&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;toString&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;replace&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="regex token"&gt;/,/g&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 20:28:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/negative-buffer-web-appbuilder/m-p/789998#M3992</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-25T20:28:18Z</dc:date>
    </item>
  </channel>
</rss>

