MapInfoに関するよくあるご質問になります。
MapInfo MapXtreme
MapXtremeプログラミング
Q. マップの位置を緯度経度で指定する方法を教えてください。
A.
サンプルコード (C#)
// map:mapオブジェクト x:経度(double型) y:緯度(double型)
MapInfo.Geometry.DPoint pt = new MapInfo.Geometry.DPoint(x, y);
map.Center = pt;
サンプルコード (VB.NET)
' map:mapオブジェクト x:経度(double型) y:緯度(double型)
Dim pt As New MapInfo.Geometry.DPoint(x, y)
map.Center = pt
一覧に戻る
|