<?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: Callout doesn't move with MapView.centerAt in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417641#M2846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've confirmed that this problem has been fixed in the upcoming v2.0 release of the SDK and the ArcGIS for Android app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jun 2012 21:02:11 GMT</pubDate>
    <dc:creator>AndyGup</dc:creator>
    <dc:date>2012-06-12T21:02:11Z</dc:date>
    <item>
      <title>Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417635#M2840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, I am encountering a problem when the Callout I create doesn't pan with the map programmatically on a call to MapView.centerAt().&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To reproduce the problem:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;I create a MapView with the World_Street_Map service (i.e. the HelloWorldMap sample)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;I create a point that represents the ESRI HQ in WebMercator coordinates (by reprojecting it from 34.05691 latitude, -117.1957 longitude)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;I construct a Callout at this coordinate&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;IF I STOP HERE, THE CALLOUT IS SPATIALLY IN THE CORRECT POSITION&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;If I now call MapView.centerAt to the ESRI HQ the map pans so that ESRI HQ is in the center of the map, but the callout is now in Moreno Valley?!?!&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;If I were to interactively pan the map the Callout will magically jump back to ESRI HQ in Redlands&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;Here is additional references and steps to reproduce the problem:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Create the HelloWorldMap sample, &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Hello_World_Map/011900000005000000/" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Hello_World_Map/011900000005000000/&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Define the calloutstyle.xml with patches (see below) and &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgismobile/10.0/apis/android/api/com/esri/android/map/Callout.html" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/android/api/com/esri/android/map/Callout.html&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Replace the body of your HelloWorldMap sample with the code below&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;Here's my calloutstyle.xml (needs to be placed under res/xml folder):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;nbsp; &amp;lt;resources&amp;gt;&amp;nbsp; &amp;lt;calloutViewStyle &amp;nbsp;&amp;nbsp; titleTextColor="#000000" &amp;nbsp;&amp;nbsp; titleTextSize="10" &amp;nbsp;&amp;nbsp; titleTextStyle="0" &amp;nbsp;&amp;nbsp; titleTextTypeFace="0" &amp;nbsp;&amp;nbsp; backgroundColor="#ffffff"&amp;nbsp; &amp;nbsp;&amp;nbsp; backgroundAlpha="255" &amp;nbsp;&amp;nbsp; frameColor="#000000" &amp;nbsp;&amp;nbsp; flat="true" &amp;nbsp;&amp;nbsp; anchor="5" /&amp;gt;&amp;nbsp; &amp;lt;/resources&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's my Activity's main body (you may need to change package and class names to match your project):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;package com.esri.android.calloutcentertest;&amp;nbsp; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.widget.TextView; import android.widget.Toast; import com.esri.android.map.Callout; import com.esri.android.map.MapView; import com.esri.android.map.ags.ArcGISDynamicMapServiceLayer; import com.esri.android.map.event.OnSingleTapListener; import com.esri.core.geometry.GeometryEngine; import com.esri.core.geometry.Point; import com.esri.core.geometry.SpatialReference;&amp;nbsp; public class CalloutCenterTestActivity extends Activity {&amp;nbsp; MapView map = null;&amp;nbsp;&amp;nbsp; /** Called when the activity is first created. */&amp;nbsp; public void onCreate(Bundle savedInstanceState) { &amp;nbsp; super.onCreate(savedInstanceState); &amp;nbsp; setContentView(R.layout.main);&amp;nbsp; &amp;nbsp; // Retrieve the map and initial extent from XML layout &amp;nbsp; map = (MapView)findViewById(R.id.map); &amp;nbsp; map.addLayer(new ArcGISDynamicMapServiceLayer( &amp;nbsp;&amp;nbsp; "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer") &amp;nbsp; );&amp;nbsp;&amp;nbsp; &amp;nbsp; // The map.getCallout().setCoordinates() / map.centerAt() bug. &amp;nbsp; Toast.makeText(this, "TAP SCREEN TO SHOW ESRI HQ", Toast.LENGTH_LONG).show(); &amp;nbsp; final Context ctx = this; &amp;nbsp; map.setOnSingleTapListener(new OnSingleTapListener() { &amp;nbsp;&amp;nbsp; private static final long serialVersionUID = 5173550791541184304L;&amp;nbsp; &amp;nbsp;&amp;nbsp; public void onSingleTap(float x, float y) { &amp;nbsp;&amp;nbsp;&amp;nbsp; Toast.makeText(ctx, "SHOWING ESRI HQ IN CALLOUT", Toast.LENGTH_SHORT).show(); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // Create a point for ESRI HQ in WebMercator coordinate system. &amp;nbsp;&amp;nbsp;&amp;nbsp; Point esri4326 = new Point(-117.1957, 34.05691); &amp;nbsp;&amp;nbsp;&amp;nbsp; Point esri102100 = (Point) GeometryEngine.project( &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri4326, &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReference.create(4326), &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReference.create(102100) &amp;nbsp;&amp;nbsp;&amp;nbsp; );&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // Construct the Callout content. &amp;nbsp;&amp;nbsp;&amp;nbsp; TextView textView = new TextView(ctx); &amp;nbsp;&amp;nbsp;&amp;nbsp; textView.setText("ESRI HQ"); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // Show the callout at the correct location. &amp;nbsp;&amp;nbsp;&amp;nbsp; Callout callout = map.getCallout();&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; callout.setContent(textView); &amp;nbsp;&amp;nbsp;&amp;nbsp; callout.setCoordinates(esri102100); &amp;nbsp;&amp;nbsp;&amp;nbsp; callout.setStyle(R.xml.calloutstyle); &amp;nbsp;&amp;nbsp;&amp;nbsp; callout.refresh(); &amp;nbsp;&amp;nbsp;&amp;nbsp; callout.show(); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // The map pans to ESRI HQ but the callout stays behind! &amp;nbsp;&amp;nbsp;&amp;nbsp; map.centerAt(esri102100, true); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // If the user pans the map interactively, the callout corrects itself. &amp;nbsp;&amp;nbsp; } &amp;nbsp; } );&amp;nbsp; }&amp;nbsp;&amp;nbsp; protected void onPause() { &amp;nbsp; super.onPause(); &amp;nbsp; map.pause();&amp;nbsp; }&amp;nbsp;&amp;nbsp; protected void onResume() { &amp;nbsp; super.onResume(); &amp;nbsp; map.unpause();&amp;nbsp; } }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2012 02:48:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417635#M2840</guid>
      <dc:creator>StephenQuan</dc:creator>
      <dc:date>2012-03-02T02:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417636#M2841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@Stephen The behavior you are seeing is most likely due to the application life cycle. I'm guessing that the Callout is being drawn before the pan animation has completed. As a test, if you set the centerAt() boolean animated property to false the behavior should go away:&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;map.centerAt(esri102100, false);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The best practice for setting this up is to implement an OnPanListener() and then show the Callout once the pan event is complete. The GeoRSSFeeds SDK sample shows a basic implementation of a map listener.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm also opening a ticket to take a closer look at it...just in case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2012 22:34:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417636#M2841</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-03-02T22:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417637#M2842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This turned out to be a bug in SDK v1.0.1. It was entered as #NIM078920.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2012 19:15:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417637#M2842</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-03-09T19:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417638#M2843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Any information on this bug, as it is not fixed in 1.1?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 05:44:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417638#M2843</guid>
      <dc:creator>SimonKlein</dc:creator>
      <dc:date>2012-04-18T05:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417639#M2844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry for the delay, I am checking on this and hope to get more details on when it will be fixed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 15:20:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417639#M2844</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-05-03T15:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417640#M2845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I got solution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;P align="left"&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; callout.setContent(body);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout.setStyle(R.xml.calloutxml);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout.setCoordinates(centerPT);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.zoomin();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.zoomToResolution(centerPT, 100);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout.show();&lt;/PRE&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I used zoomin and zoomout fuction so map will reflect changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:53:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417640#M2845</guid>
      <dc:creator>VirenSavaliya</dc:creator>
      <dc:date>2021-12-11T18:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417641#M2846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've confirmed that this problem has been fixed in the upcoming v2.0 release of the SDK and the ArcGIS for Android app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2012 21:02:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417641#M2846</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-06-12T21:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417642#M2847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Andy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using v2 on Android, and I still replicate this problem, just as the original poster described. Are you sure that it was fixed for 2.0?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Joe&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 12:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417642#M2847</guid>
      <dc:creator>JosephMarin</dc:creator>
      <dc:date>2012-09-11T12:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417643#M2848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@jwmarin Good catch. I tried it on a different test phone and was able to reproduce as well. I'll submit a ticket and post my findings.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 13:45:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417643#M2848</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-09-11T13:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417644#M2849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry for the confusion, the issue has been reopened. In meantime please use this workaround:&lt;/SPAN&gt;&lt;BR /&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; 
// Show the callout at the correct location.
Callout callout = mMapView.getCallout(); 
callout.setContent(textView);
callout.setCoordinates(point);
callout.setStyle(R.xml.callout);
// @WORKAROUND - Force map to zoom in
mMapView.zoomToResolution(point, 100);
callout.refresh();
callout.show();
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:53:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417644#M2849</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-11T18:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Callout doesn't move with MapView.centerAt</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417645#M2850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;can anyone help me on this also?&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/99134-callout-doesn-t-move-with-map-zoom-in-out?p=352732#post352732"&gt;http://forums.arcgis.com/threads/99134-callout-doesn-t-move-with-map-zoom-in-out?p=352732#post352732&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 11:47:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-doesn-t-move-with-mapview-centerat/m-p/417645#M2850</guid>
      <dc:creator>SandeepG_S</dc:creator>
      <dc:date>2013-12-18T11:47:27Z</dc:date>
    </item>
  </channel>
</rss>

