<?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: Mouse wheel zoom too quick with map view and scene view in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1583440#M86502</link>
    <description>&lt;P&gt;Thanks for your kind tips and brilliant suggestions.&lt;/P&gt;&lt;P&gt;I will examine anything we could be refined with LOD.&lt;/P&gt;&lt;P&gt;Best wishes to Jonathan.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 09 Feb 2025 04:09:01 GMT</pubDate>
    <dc:creator>TedZhou</dc:creator>
    <dc:date>2025-02-09T04:09:01Z</dc:date>
    <item>
      <title>Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582898#M86477</link>
      <description>&lt;P&gt;Our customers complain the &lt;STRONG&gt;mouse wheel&lt;/STRONG&gt; to &lt;STRONG&gt;zoom in&lt;/STRONG&gt; and &lt;STRONG&gt;zoom out&lt;/STRONG&gt; a little too quick for both &lt;STRONG&gt;map view&lt;/STRONG&gt; and &lt;STRONG&gt;scene view&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure how to refine the mouse wheel configurations with ArcGIS JavaScript SDK&amp;nbsp;&lt;/P&gt;&lt;P&gt;"dependencies": {&lt;BR /&gt;"@arcgis/core": "^4.29.2",&lt;BR /&gt;"@esri/calcite-components-react": "^2.6.0",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward to your tips and solutions...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Ted&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2025 22:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582898#M86477</guid>
      <dc:creator>TedZhou</dc:creator>
      <dc:date>2025-02-06T22:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582909#M86478</link>
      <description>&lt;P&gt;I saw those settings for old ArcGis as below:&lt;/P&gt;&lt;PRE&gt;esri.config.defaults.map.zoomDuration = 250; //time in milliseconds; default is 250
esri.config.defaults.map.zoomRate = 25; //refresh rate of zoom animation; default is 25&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/3/jsapi/esri.config-amd.html" target="_blank" rel="noopener nofollow noreferrer"&gt;esri/config | API Reference | ArcGIS API for JavaScript 3.46 | ArcGIS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But I did not see relevant information within config class of latest ArcGIS Maps SDK for JavaScript (4.31)&amp;nbsp; yet&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html" target="_blank" rel="noopener nofollow noreferrer"&gt;config | API Reference | ArcGIS Maps SDK for JavaScript 4.31 | Esri Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2025 23:01:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582909#M86478</guid>
      <dc:creator>TedZhou</dc:creator>
      <dc:date>2025-02-06T23:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582944#M86479</link>
      <description>&lt;LI-CODE lang="javascript"&gt;require([
  "esri/Map",
  "esri/views/MapView"
], function(Map, MapView) {
  
  // Create a map
  var map = new Map({
    basemap: "streets"
  });

  // Create a view and set the zoom rate and duration
  var view = new MapView({
    container: "viewDiv",  // Reference to the DOM node that will contain the view
    map: map,              // Reference to the map object created before the view
    center: [151.2093, -33.8688], // Longitude, latitude
    zoom: 10,              // Initial zoom level
    zoomRate: 0.5,         // Zoom rate (default is 0.1)
    zoomDuration: 1000     // Zoom duration in milliseconds (default is 500)
  });

});&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 07 Feb 2025 00:48:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582944#M86479</guid>
      <dc:creator>TedZhou</dc:creator>
      <dc:date>2025-02-07T00:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582946#M86480</link>
      <description>&lt;P&gt;does this help?&lt;/P&gt;&lt;P&gt;Zoom Sensitivity Issue&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-web-appbuilder-questions/zoom-sensitivity-issue/td-p/1399711" target="_blank"&gt;https://community.esri.com/t5/arcgis-web-appbuilder-questions/zoom-sensitivity-issue/td-p/1399711&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 00:54:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1582946#M86480</guid>
      <dc:creator>BillFox</dc:creator>
      <dc:date>2025-02-07T00:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1583071#M86482</link>
      <description>&lt;P&gt;I would also &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#:~:text=extent%20to%20another.-,Zoom%20and%20LODs,-Why%20doesn%27t%20setting" target="_self"&gt;check whether you have LODs defined in you map.&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you have not due to one of the reasons explained there, then the mapview effective LODs defaults to null. In my experience this causes extremely sharp zooming when using the mouse wheel.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 13:31:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1583071#M86482</guid>
      <dc:creator>JonathanDawe3</dc:creator>
      <dc:date>2025-02-07T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse wheel zoom too quick with map view and scene view</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1583440#M86502</link>
      <description>&lt;P&gt;Thanks for your kind tips and brilliant suggestions.&lt;/P&gt;&lt;P&gt;I will examine anything we could be refined with LOD.&lt;/P&gt;&lt;P&gt;Best wishes to Jonathan.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2025 04:09:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/mouse-wheel-zoom-too-quick-with-map-view-and-scene/m-p/1583440#M86502</guid>
      <dc:creator>TedZhou</dc:creator>
      <dc:date>2025-02-09T04:09:01Z</dc:date>
    </item>
  </channel>
</rss>

