Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个简单的问题,我想修改很长时间。
谁能告诉我在哪里可以将默认地图位置从“美国”更改为“英国”或其他国家/地区?
非常感谢。
在我看来,您只需为其提供所需的纬度和经度,它将以该点为中心。
您可能会发现这很有趣:
虚拟地球 JavaScript 智能感知助手 http://www.codeplex.com/VEJS
这将解决您的问题(这是在 C# 中)
Bing.Maps.Location loc = new Bing.Maps.Location() { Latitude = yourlatitude Longitude = yourlongitude }; map.SetView(loc, 12);