<?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 How to run buffer.gpk on arcgis runtime 100.1.0 in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265202#M778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create buffer for polyline on arcgis run time sdk but i have to use arcgis tool box.How ca i access toolbox in arcgis run time sdk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Nov 2017 10:26:16 GMT</pubDate>
    <dc:creator>SaikrishnaGardasu</dc:creator>
    <dc:date>2017-11-20T10:26:16Z</dc:date>
    <item>
      <title>How to run buffer.gpk on arcgis runtime 100.1.0</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265202#M778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create buffer for polyline on arcgis run time sdk but i have to use arcgis tool box.How ca i access toolbox in arcgis run time sdk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2017 10:26:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265202#M778</guid>
      <dc:creator>SaikrishnaGardasu</dc:creator>
      <dc:date>2017-11-20T10:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to run buffer.gpk on arcgis runtime 100.1.0</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265203#M779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rather than acces the toolbox in ArcMap, you can use the &lt;A href="https://developers.arcgis.com/java/latest/api-reference/reference/com/esri/arcgisruntime/geometry/GeometryEngine.html#buffer(com.esri.arcgisruntime.geometry.Geometry, double)"&gt;buffer tool in the GeometryEngine&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow you to buffer any feature that you pass in to the tool and then buffer it by the unit of the spatial reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2017 15:26:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265203#M779</guid>
      <dc:creator>AlexanderNohe1</dc:creator>
      <dc:date>2017-11-20T15:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to run buffer.gpk on arcgis runtime 100.1.0</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265204#M780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You.But I have to perform some spatial operations also in ArcGIS Runtime Sdk.I have to access toolbox in ArcGIS runtime sdk GUI.Help me through how to develop java code to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2017 03:59:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265204#M780</guid>
      <dc:creator>SaikrishnaGardasu</dc:creator>
      <dc:date>2017-11-21T03:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to run buffer.gpk on arcgis runtime 100.1.0</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265205#M781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll not actually access the ArcMap toolbox directly from within a Runtime application. You'll access a Geoprocessing package (GPK file), in your Runtime application using Runtime's &lt;A href="https://developers.arcgis.com/java/latest/guide/local-server.htm"&gt;Local Server&lt;/A&gt;. Local Server knows how to unpack the GPK and execute the tools to solve your geoprocessing task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This topic:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/java/latest/guide/author-and-publish-a-geoprocessing-model.htm" title="https://developers.arcgis.com/java/latest/guide/author-and-publish-a-geoprocessing-model.htm"&gt;Author and publish a geoprocessing model—ArcGIS Runtime SDK for Java | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;, explains the GPK file creation process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This topic:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/java/latest/guide/run-a-geoprocessing-task.htm" title="https://developers.arcgis.com/java/latest/guide/run-a-geoprocessing-task.htm"&gt;Run a geoprocessing task—ArcGIS Runtime SDK for Java | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;, explains how Local Server accesses the GPK and runs the tool or model to get a result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2017 05:31:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/how-to-run-buffer-gpk-on-arcgis-runtime-100-1-0/m-p/265205#M781</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2017-12-12T05:31:46Z</dc:date>
    </item>
  </channel>
</rss>

