如何以编程方式将 3-D 形状添加到 Bing 地图(虚拟地球)?
问问题
460 次
1 回答
1
这里有一些代码可以帮助你:
var map = new VEMap('map_div_id');
// Put you points together and into an array, the 10.0 below is meters above the ground
var point1 = new VELatLong(45.01188,-111.06687, 10.0);
var point2 = new VELatLong(45.01534,-104.06324, 10.0)
var point3 = new VELatLong(41.01929,-104.06, 10.0);
var point4 = new VELatLong(41.003,-111.05878, 10.0);
var points = [point1, point2, point3, point4, point1];
var shape = new VEShape(VEShapeType.Polygon, points);
map.AddShape(shape);
有关详细信息,请参阅以下内容:
VELatLong 类
VEShape 类
AddShape 方法
于 2009-10-29T15:14:23.030 回答