<?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: Mobile Flex: Increasing Finger Tap Sensitivity in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501356#M11430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Matt, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; I use the mapClickHandler within the Map and an extent from the mapPoint of the click to increase the sensitivity.&amp;nbsp; I adjust the additional numbers that I add to the extent based on the type of map, data and scales that I am working with.&amp;nbsp; I then use selectionComplete within the feature layer to show the infowindow.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:Map id="myMap"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapClick="map_mapClickHandler(event)"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function myMap_mapClickHandler(event:MapMouseEvent):void
&amp;nbsp;&amp;nbsp; { 
&amp;nbsp;&amp;nbsp;&amp;nbsp; // set the selection query based on the click
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vPt:MapPoint = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapClickPoint = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vX:Number = vPt.x;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vY:Number = vPt.y;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vExtent:Extent = new Extent(vX - 20, vY - 20,vX + 20, vY + 20);
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryMapClick.geometry = vExtent;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; streetLightSelection.selectFeatures(queryMapClick);
&amp;nbsp;&amp;nbsp;&amp;nbsp; myMap.infoWindow.hide();&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 22:00:10 GMT</pubDate>
    <dc:creator>MikeDahm</dc:creator>
    <dc:date>2021-12-11T22:00:10Z</dc:date>
    <item>
      <title>Mobile Flex: Increasing Finger Tap Sensitivity</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501353#M11427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We've just been testing a Mobile Flex app on an iPhone. One thing we notice is for point features, they are hard to tap. We've made them large in the published service, but too large overwhelms the iPad screen. Just wondered if anybody had found a way to increase the area/sensitivity of a finger tap, to help in selecting features?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;--Matt&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2013 16:04:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501353#M11427</guid>
      <dc:creator>MattSheehan</dc:creator>
      <dc:date>2013-11-05T16:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile Flex: Increasing Finger Tap Sensitivity</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501354#M11428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Matt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the application dpi you use? 160?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2013 18:42:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501354#M11428</guid>
      <dc:creator>YannCabon</dc:creator>
      <dc:date>2013-11-05T18:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile Flex: Increasing Finger Tap Sensitivity</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501355#M11429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Matt,&lt;BR /&gt;&lt;BR /&gt;What's the application dpi you use? 160?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yaan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would actually like to revive this question and see if you can provide insight into the similar question I have.&amp;nbsp; I have noticed that it is very difficult to touch a point and get an infowindow to popup at higher dpi applications.&amp;nbsp; I have been at 240 and 320 both I feel are more difficult then they should be.&amp;nbsp; I resorted to doing a spatial query around my finger tap to select features but It would be nice to have a sensitivity option for touch inputs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 19:48:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501355#M11429</guid>
      <dc:creator>IsaiahAguilera</dc:creator>
      <dc:date>2013-11-18T19:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile Flex: Increasing Finger Tap Sensitivity</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501356#M11430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Matt, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; I use the mapClickHandler within the Map and an extent from the mapPoint of the click to increase the sensitivity.&amp;nbsp; I adjust the additional numbers that I add to the extent based on the type of map, data and scales that I am working with.&amp;nbsp; I then use selectionComplete within the feature layer to show the infowindow.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:Map id="myMap"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapClick="map_mapClickHandler(event)"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function myMap_mapClickHandler(event:MapMouseEvent):void
&amp;nbsp;&amp;nbsp; { 
&amp;nbsp;&amp;nbsp;&amp;nbsp; // set the selection query based on the click
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vPt:MapPoint = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapClickPoint = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vX:Number = vPt.x;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vY:Number = vPt.y;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var vExtent:Extent = new Extent(vX - 20, vY - 20,vX + 20, vY + 20);
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryMapClick.geometry = vExtent;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; streetLightSelection.selectFeatures(queryMapClick);
&amp;nbsp;&amp;nbsp;&amp;nbsp; myMap.infoWindow.hide();&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:00:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/mobile-flex-increasing-finger-tap-sensitivity/m-p/501356#M11430</guid>
      <dc:creator>MikeDahm</dc:creator>
      <dc:date>2021-12-11T22:00:10Z</dc:date>
    </item>
  </channel>
</rss>

