ASP.Netアプリケーションを作成し、WebフォームにMapコントロールを追加するには、次の手順を実行します。
コントロールを構成するには、次の手順を実行します。
<c1:C1Maps>
タグ内のHeight、Width、 Center、Zoom、およびSourceプロパティを次のように設定します。
ソースビュー |
コードのコピー
|
---|---|
<c1:C1Maps ID="C1Maps1" runat="server" Center="-80.0852, 42.1296" Height="500px" Source="BingMapsRoadSource" Width="600px" Zoom="10"> </c1:C1Maps> |
C# |
コードのコピー
|
---|---|
C1Maps1.Height = 500;
C1Maps1.Width = 600;
C1Maps1.Center=new PointD(-80.0852d,42.1296d );
C1Maps1.Zoom = 10;
C1Maps1.Source = MapSource.BingMapsRoadSource;
|
VB |
コードのコピー
|
---|---|
C1Maps1.Height = 500
C1Maps1.Width = 600
C1Maps1.Center = New PointD(-80.0852D, 42.1296D)
C1Maps1.Zoom = 10
C1Maps1.Source = MapSource.BingMapsRoadSource
|
次の図は、C1MapsコントロールのBing Maps道路ソースにPennsylvania州のErie周辺を表示したところです。