<?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: GPS location service showing no symbol in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696850#M4869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Olli, have you tried your app on a different phone? It's possible the blurry accuracy circle has something to do with your phone's operating system and its support for Open GL ES 2.0. &lt;BR /&gt;&lt;BR /&gt;Also, do you have a local Esri distributor you can contact on this? I'm not sure how to duplicate this error, as I haven't seen it.&lt;BR /&gt;&lt;BR /&gt;-Andy&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was able to duplicate the error with another Samsung Galaxy phone, so the bug exists at least in two different Galaxy phones (Galaxy XCover (GT-S5690) and Galaxy S plus (GT-I9001)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I solved the problem by copying the code from nearby sample. It makes the location symbol to apperar properly without the accuracy circle. With accuracy circle turned on the problem exists with similar blurry circle mentioned in previous posts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Olli&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jun 2012 05:46:29 GMT</pubDate>
    <dc:creator>OlliWirpi</dc:creator>
    <dc:date>2012-06-07T05:46:29Z</dc:date>
    <item>
      <title>GPS location service showing no symbol</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696846#M4865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After updating ArcGIS for Android SDK to version 1.1.1 location service shows no symbol anymore. Also the accuracy circle looks weird. How can I make the symbol and accuracy circle look ok? Code snippet and screenshot below. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
locationService = mMapView.getLocationService();
locationService.setSymbol(new SimpleMarkerSymbol(Color.BLUE, 15, STYLE.X)); //setSymbol(new PictureMarkerSymbol(getResources().getDrawable(R.drawable.ic_maps_indicator_current_position_anim3)));
locationService.setAccuracyCircleOn(false);
locationService.setAutoPan(false);
locationService.start();
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]14902[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 09:45:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696846#M4865</guid>
      <dc:creator>OlliWirpi</dc:creator>
      <dc:date>2012-06-04T09:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: GPS location service showing no symbol</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696847#M4866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Olli, what happens if you just use the default accuracy circle settings? Does the circle look okay then? To do that comment out the following line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;//locationService.setAccuracyCircleOn(false);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In regards to the SimpleMarkerSymbol, does it work for you if you try a different style? I was able to duplicate that STYLE.X didn't work for me either.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;SimpleMarkerSymbol s = new SimpleMarkerSymbol(Color.BLUE,15,com.esri.core.symbol.SimpleMarkerSymbol.STYLE.CIRCLE);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 16:24:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696847#M4866</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-06-05T16:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: GPS location service showing no symbol</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696848#M4867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Olli, what happens if you just use the default accuracy circle settings? Does the circle look okay then? To do that comment out the following line:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//locationService.setAccuracyCircleOn(false);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;In regards to the SimpleMarkerSymbol, does it work for you if you try a different style? I was able to duplicate that STYLE.X didn't work for me either.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SimpleMarkerSymbol s = new SimpleMarkerSymbol(Color.BLUE,15,com.esri.core.symbol.SimpleMarkerSymbol.STYLE.CIRCLE);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;-Andy&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tried that but didn't help. Actually I changed the symbol color to red to see what is changed on the screen. Strange that the accuracy circle stays and the blurry outline color changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; locationService = mMapView.getLocationService();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SimpleMarkerSymbol s = new SimpleMarkerSymbol(Color.RED,15,com.esri.core.symbol.SimpleMarkerSymbol.STYLE.CIRCLE);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; locationService.setSymbol(s); //setSymbol(new PictureMarkerSymbol(getResources().getDrawable(R.drawable.ic_maps_indicator_current_position_anim3)));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //locationService.setAccuracyCircleOn(false);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; locationService.setAutoPan(false);&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Screenshot&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]14970[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've looked at the Nearby sample. The location symbol looks ok (blue circle) when I run the application in my phone but I can't find the code that sets the graphical elements of the locator service from the sample project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Olli&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:19:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696848#M4867</guid>
      <dc:creator>OlliWirpi</dc:creator>
      <dc:date>2021-12-12T05:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: GPS location service showing no symbol</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696849#M4868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Olli, have you tried your app on a different phone? It's possible the blurry accuracy circle has something to do with your phone's operating system and its support for Open GL ES 2.0. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, do you have a local Esri distributor you can contact on this? I'm not sure how to duplicate this error, as I haven't seen it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In regards to the center graphic and accuracy circle, those are created automatically when you start() the LocationService: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgismobile/10.0/apis/android/api/com/esri/android/map/LocationService.html"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/android/api/com/esri/android/map/LocationService.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 13:30:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696849#M4868</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-06-06T13:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: GPS location service showing no symbol</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696850#M4869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Olli, have you tried your app on a different phone? It's possible the blurry accuracy circle has something to do with your phone's operating system and its support for Open GL ES 2.0. &lt;BR /&gt;&lt;BR /&gt;Also, do you have a local Esri distributor you can contact on this? I'm not sure how to duplicate this error, as I haven't seen it.&lt;BR /&gt;&lt;BR /&gt;-Andy&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was able to duplicate the error with another Samsung Galaxy phone, so the bug exists at least in two different Galaxy phones (Galaxy XCover (GT-S5690) and Galaxy S plus (GT-I9001)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I solved the problem by copying the code from nearby sample. It makes the location symbol to apperar properly without the accuracy circle. With accuracy circle turned on the problem exists with similar blurry circle mentioned in previous posts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Olli&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 05:46:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/gps-location-service-showing-no-symbol/m-p/696850#M4869</guid>
      <dc:creator>OlliWirpi</dc:creator>
      <dc:date>2012-06-07T05:46:29Z</dc:date>
    </item>
  </channel>
</rss>

