Version 3.4 of the JS API now says that IE 10 is a supported browser, but if you try the sample for the toolbar draw you will notice strange behavior with the Polygon and Polyline tools. The line does not draw on the start of a point click, but draws after you click on the second point. This sample is at: http://developers.arcgis.com/en/javascript/samples/toolbar_draw/
You are right, this is a know issue and a NIM (bug) has been submitted for the same (NIM091414). Unfortunately, there is no workaround currently documented but I believe it should be fixed soon.
if (navigator.msMaxTouchPoints == 0) { // if ie10 and it is not touch screen $(map.__container).bind('MSPointerMove', function (evt) { // catch IE10 "mouse move" if (map.onMouseMove) { // if there are some listeners for mouse move evt.originalEvent.mapPoint = map.toMap({ x: evt.originalEvent.x, y: evt.originalEvent.y }); evt.originalEvent.screenPoint = new esri.geometry.Point(evt.originalEvent.x, evt.originalEvent.y, map.spatialReference); map.onMouseMove(evt.originalEvent); //call mouse move with added previously params } }); }
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.