ArcGIS REST参照の正体



ArcGIS Onlineの謎に迫る

とりあえず確認できそう。
10.0使えないじゃないか。

まあ要求応答状況見てみるか。

using ESRI.ArcGIS.Carto;
using System.Windows.Forms;

namespace RestMapServerTest
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();

      IMapServerRESTLayer restLayer = new MapServerRESTLayerClass();
      restLayer.Connect("http://tiles3.arcgis.com/tiles/wlVTGRSYTzAbjjiC/arcgis/rest/services/shinsui1_8/MapServer");

      this.axMapControl1.AddLayer((ILayer)restLayer, 0);

    }
  }
}
カテゴリー: 開発, 設計 タグ: , パーマリンク