Bing 地图,如何缩放地图?

发布于 2024-11-17 03:21:08 字数 61 浏览 2 评论 0原文

如何缩放地图以一次显示地图中的所有图钉? 我使用“Bing 地图 AJAX 控件,版本 7.0”。 谢谢你!

How to scale map to show all pushpins in the map at one time?
I use "Bing Maps AJAX Control, Version 7.0".
Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

当梦初醒 2024-11-24 03:21:08

有一种名为 LocationRect 的方法,可以用于此目的。以下是 MSDN< 的示例/a>:

function init(){
// Load the map
var map = new Microsoft.Maps.Map(
    document.getElementById("myMap"),
    {
        credentials: "YOUR-BING-KEY",
        mapTypeId: Microsoft.Maps.MapTypeId.road
    }
);

// Some sample pins
var locs = [];
var loc1 = new Microsoft.Maps.Location(-10, 0);
var pin1 = new Microsoft.Maps.Pushpin(loc1 , {text: '1'});

var loc2 = new Microsoft.Maps.Location(0, 10);
var pin2 = new Microsoft.Maps.Pushpin(loc2, {text: '2'});

var loc3 = new Microsoft.Maps.Location(10, 0);
var pin3 = new Microsoft.Maps.Pushpin(loc3, {text: '3'});

var loc4 = new Microsoft.Maps.Location(20, -20);
var pin4 = new Microsoft.Maps.Pushpin(loc4, {text: '4'});

locs.push(loc1);
locs.push(loc2);
locs.push(loc3);
locs.push(loc4);

map.entities.push(pin1);
map.entities.push(pin2);
map.entities.push(pin3);
map.entities.push(pin4);
var bestview = Microsoft.Maps.LocationRect.fromLocations(locs);
map.setView({bounds:bestview });

}

There is a method called LocationRect that can be used for this. Here is an example from MSDN :

function init(){
// Load the map
var map = new Microsoft.Maps.Map(
    document.getElementById("myMap"),
    {
        credentials: "YOUR-BING-KEY",
        mapTypeId: Microsoft.Maps.MapTypeId.road
    }
);

// Some sample pins
var locs = [];
var loc1 = new Microsoft.Maps.Location(-10, 0);
var pin1 = new Microsoft.Maps.Pushpin(loc1 , {text: '1'});

var loc2 = new Microsoft.Maps.Location(0, 10);
var pin2 = new Microsoft.Maps.Pushpin(loc2, {text: '2'});

var loc3 = new Microsoft.Maps.Location(10, 0);
var pin3 = new Microsoft.Maps.Pushpin(loc3, {text: '3'});

var loc4 = new Microsoft.Maps.Location(20, -20);
var pin4 = new Microsoft.Maps.Pushpin(loc4, {text: '4'});

locs.push(loc1);
locs.push(loc2);
locs.push(loc3);
locs.push(loc4);

map.entities.push(pin1);
map.entities.push(pin2);
map.entities.push(pin3);
map.entities.push(pin4);
var bestview = Microsoft.Maps.LocationRect.fromLocations(locs);
map.setView({bounds:bestview });

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文