YouTube | Facebook | X(Twitter) | RSS

マップ サービス レイヤーを追加

2016/9/1 (木)

Sub test()
    Dim pGxApplication As IGxApplication
    Set pGxApplication = Application
     
    Dim pMxDocument As IMxDocument
    Set pMxDocument = ThisDocument
     
     
    Dim pGxObject As IGxObject
    Set pGxObject = pGxApplication.SelectedObject
     
    If TypeOf pGxObject Is IGxAGSMap Then
        'マップ サービス
        Dim agsObject3 As IGxAGSObject3
        Set agsObject3 = pGxObject
         
    '    Dim pMapServer As IMapServer
    '    set pmapserver = agsObject3.
         
        Dim pLayerFactory As ILayerFactory
        Set pLayerFactory = New MapServerLayerFactory
         
        'ArcGSI Server マップ サービスの場合
'        Dim pMapServerLayer As IMapServerLayer
'        Set pMapServerLayer = New MapServerLayer
'
'        Call pMapServerLayer.ServerConnect(agsObject3.AGSServerObjectName, agsObject3.AGSServerObjectName.Name)
'        Call pMxDocument.FocusMap.AddLayer(pMapServerLayer)
         
        'ArcGIS Online マップ サービスの場合
        Dim pMapServerRESTLayer As IMapServerRESTLayer
        Set pMapServerRESTLayer = New MapServerRESTLayer
        Call pMapServerRESTLayer.Connect(agsObject3.AGSServerObjectName.URL)
        Call pMxDocument.FocusMap.AddLayer(pMapServerRESTLayer)
         
     
    ElseIf TypeOf pGxObject Is IGxAGSFeatureServer Then
        'フィーチャ サービス
     
        Debug.Print 1
     
    End If
 
End Sub
  • この記事を書いた人

羽田 康祐

伊達と酔狂のGISエンジニア。GIS上級技術者、Esri認定インストラクター、CompTIA CTT+ Classroom Trainer、潜水士、PADIダイブマスター、四アマ。WordPress は 2.1 からのユーザーで歴だけは長い。 代表著書『"地図リテラシー入門―地図の正しい読み方・描き方がわかる』 GIS を使った自己紹介はこちら。ESRIジャパン(株)所属、元青山学院大学非常勤講師を兼務。日本地図学会第31期常任委員。発言は個人の見解です。

-プログラミング, ArcGIS
-,