<?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: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/1053121#M72816</link>
    <description>&lt;P&gt;Oddly enough, despite having used this solution effectively for the past 5 years, this issue has reared it's ugly head.&amp;nbsp; I know it's specific to the Android OS because it's not an issue on iOS.&amp;nbsp; And on Android, it doesn't work with either Chrome or FireFox.&amp;nbsp; I tried removing "&lt;SPAN&gt;document.dojoClick = false;" just because that's how I troubleshoot when I'm clueless, but that didn't resolve it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Has anybody else experienced this recently?&amp;nbsp; I'm wondering if it's some kind of Android update.&amp;nbsp; I know I'm using old javascript technology but, other than this issue, the coding works flawlessly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any suggestions are appreciated - I will follow up if I find a solution.&amp;nbsp; Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Apr 2021 11:49:23 GMT</pubDate>
    <dc:creator>PLadd</dc:creator>
    <dc:date>2021-04-30T11:49:23Z</dc:date>
    <item>
      <title>Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102977#M9438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using javasctip library 3.13.&amp;nbsp; I have graphics on a map that open up the graphics infowindow.&amp;nbsp; It works fine on desktop, and on IOS devices but not on my Galaxy S5 (trying to test other android devices as well).&amp;nbsp; I have tried many fixes but these seem to be related to older versions of the library...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;esri.layers._GraphicsContainer.prototype._tolerance = 15;&lt;/LI&gt;&lt;LI&gt;document.dojoClick = false; &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other touch functionality works on the android device such at pinch for zoon, swipe, etc... just not the tap. Any ideas? If you need any other info please let me know. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2015 17:25:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102977#M9438</guid>
      <dc:creator>AndrewGianikas</dc:creator>
      <dc:date>2015-03-27T17:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102978#M9439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the exact same issue on Android.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, attaching the map.on("click") event in Android does not respond at all, neither do layer.on("click"). It fails on both devices and the emulator-mode in chrome, which suggests that somewhere in the framework something triggers when Android is being sniffed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does work on any other platform, so I conclude that this is a bug.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 13:26:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102978#M9439</guid>
      <dc:creator>ØyvindIdland</dc:creator>
      <dc:date>2015-05-19T13:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102979#M9440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had the same problem and came across this post&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/102184" target="_blank"&gt;Javascript API map 3.7 has no coordinates when handling map click&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding the following to the function after the require statement fixed it for me&lt;/P&gt;&lt;P&gt;document.dojoClick = false;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;require(["esri/map",
&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;.&lt;/SPAN&gt;
&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;.&lt;/SPAN&gt;
&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;"dojo/ready"],&lt;/SPAN&gt;
&amp;nbsp; function (Map, .....,ready) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.dojoClick = false;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ready(function () {....&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:20:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102979#M9440</guid>
      <dc:creator>MatthewLofgren</dc:creator>
      <dc:date>2021-12-11T06:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102980#M9441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for posting your fix Matt.&amp;nbsp; This helped solve my problem using the Tax Parcel Viewer template.&amp;nbsp; For others using this template and having this problem(map id doesn't work with Android), place Matt's fix on js/homePage.js right above the chunk of code below.&amp;nbsp; On the original template, it starts on line 530&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;document.dojoClick = false;&lt;/P&gt;&lt;P&gt;dojo.connect(map, "onClick", function (evt) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (draw) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedGraphic = null;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 20:56:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/102980#M9441</guid>
      <dc:creator>PLadd</dc:creator>
      <dc:date>2016-02-01T20:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/1053121#M72816</link>
      <description>&lt;P&gt;Oddly enough, despite having used this solution effectively for the past 5 years, this issue has reared it's ugly head.&amp;nbsp; I know it's specific to the Android OS because it's not an issue on iOS.&amp;nbsp; And on Android, it doesn't work with either Chrome or FireFox.&amp;nbsp; I tried removing "&lt;SPAN&gt;document.dojoClick = false;" just because that's how I troubleshoot when I'm clueless, but that didn't resolve it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Has anybody else experienced this recently?&amp;nbsp; I'm wondering if it's some kind of Android update.&amp;nbsp; I know I'm using old javascript technology but, other than this issue, the coding works flawlessly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any suggestions are appreciated - I will follow up if I find a solution.&amp;nbsp; Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 11:49:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/1053121#M72816</guid>
      <dc:creator>PLadd</dc:creator>
      <dc:date>2021-04-30T11:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Javascript api 3.13, tap on android not opening graphic's infowindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/1053160#M72817</link>
      <description>&lt;P&gt;Sorry, false alarm.&amp;nbsp; Once I got DevTools working properly on an Android phone, I realized that, while the issue was presenting itself in a similar fashion to the problem raised above, it was actually a new function that I had written in March that was tripping things up for me.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 13:35:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/issue-javascript-api-3-13-tap-on-android-not/m-p/1053160#M72817</guid>
      <dc:creator>PLadd</dc:creator>
      <dc:date>2021-04-30T13:35:22Z</dc:date>
    </item>
  </channel>
</rss>

