laptop and a wrench

不具合

MapView::RelativeScale property returns null for ArcMapImage services.

最後に公開された状態: August 25, 2014 No Product Found
不具合 ID 番号 NIM010497
送信されましたJuly 24, 2007
最終更新日June 5, 2024
適用対象No Product Found
見つかったバージョン9.2
ステータスDuplicate

参考情報

NIM009856

対処法

Code like this can be used to calculate the current relative scale of the map: private double getMapScale() { int dpi = 96; //number of pixels per inch; default is 96 if ((_map.GetFunctionality(0).GetType()) == typeof(ESRI.ArcGIS.ADF.Web.DataSources.IMS.MapFunctionality)) { ESRI.ArcGIS.ADF.Web.DataSources.IMS.MapFunctionality funcMap = (ESRI.ArcGIS.ADF.Web.DataSources.IMS.MapFunctionality) _map.GetFunctionality(0); MapView viewMap = funcMap.MapView; dpi = viewMap.ImageDescriptor.Dpi; } int inchesPerDD = 4371840; //number of inches in one degree latitude (approx) double mapW = _map.Extent.Width; //width of the map in decimal degrees int imgW = (int) _map.Width.Value; //width of the map image in pixels double inchesMap = mapW * inchesPerDD; //width of the map in inches double inchesImg = imgW / dpi; //width of the map image in inches return (inchesMap / inchesImg); //number of ground inches per inch of the image }

再現の手順

不具合 ID: NIM010497

ソフトウェア:

  • No Product Found

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動