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:
//locationService.setAccuracyCircleOn(false);
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.
SimpleMarkerSymbol s = new SimpleMarkerSymbol(Color.BLUE,15,com.esri.core.symbol.SimpleMarkerSymbol.STYLE.CIRCLE);
-Andy
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.Code: locationService = mMapView.getLocationService();
SimpleMarkerSymbol s = new SimpleMarkerSymbol(Color.RED,15,com.esri.core.symbol.SimpleMarkerSymbol.STYLE.CIRCLE);
locationService.setSymbol(s); //setSymbol(new PictureMarkerSymbol(getResources().getDrawable(R.drawable.ic_maps_indicator_current_position_anim3)));
//locationService.setAccuracyCircleOn(false);
locationService.setAutoPan(false);
Screenshot[ATTACH=CONFIG]14970[/ATTACH]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.Olli