<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/discussions/f/administration/39726/google-maps-plugin-the-map-freezes</link><description>Hello, the truth is that the problem I have may sound very strange, but it is something related to Google Maps or the plugin. It happens that the map freezes, here I will leave my code and explain exactly what it does, the first thing is a pickerFieldCustom</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/thread/151561?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 17:50:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:83774451-55e2-4987-96bf-3e2f66a82cc4</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Great to hear that.&lt;br /&gt;Map components crash when initialized with null/undefined coordinates but work fine with any valid starting values. It&amp;#39;s a common issue where the map needs valid lat/lng to create its initial view.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/thread/151543?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 14:27:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8a761419-4959-4992-8552-88899ce7ce96</guid><dc:creator>AlexanderFlores</dc:creator><description>&lt;p&gt;Hi, thank you so much. With the first step it works. It seems that is necessary set a default value.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/thread/151541?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 14:14:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:247e0e03-fa01-416e-a743-f968a32c50d4</guid><dc:creator>AlexanderFlores</dc:creator><description>&lt;p&gt;Hi, in both.&amp;nbsp;The same thing happens to me in both cases, with the difference that in the user input task there is no way to change modes and the map remains completely frozen.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/thread/151530?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 05:45:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bdd9da50-3f82-453b-b98f-bee74cdadcad</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Do you see this behaviour only in the editor or also in a site or user input task?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GOOGLE MAPS PLUGIN, THE MAP FREEZES</title><link>https://community.appian.com/thread/151528?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 05:16:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:76eb4f57-953a-430d-b433-66349d60e391</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Strange to see this issue but i would recommend 2 approach to try,&lt;br /&gt;&lt;br /&gt;1) Initialize local!coordenadas with default values at the start.&lt;br /&gt;Or&lt;br /&gt;2)&amp;nbsp;Add a refresh variable to force the map to re-render:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!data: {},
  local!coordenadas,
  local!refreshMap: false(),
  {
    /* In your saveInto, add: */
    a!save(local!refreshMap, not(local!refreshMap)),

    /* Wrap your googleMapsPinField in a conditional: */
    if(
      or(isnull(local!coordenadas), local!refreshMap, not(local!refreshMap)),
      googleMapsPinField(
        /* your existing map config */
      ),
      {}
    )
  }
)&lt;/pre&gt;&lt;br /&gt;Let me know if that works for you.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>