gpt4 book ai didi

bing-maps - Bing map 添加多个图钉

转载 作者:行者123 更新时间:2023-12-02 23:24:54 25 4
gpt4 key购买 nike

如何通过 Ajax API 将多个图钉添加到 Bing map v7..?

它们可以从数组、列表、json 或其他任何地方加载。

有人可以提供一个小例子吗?谢谢

最佳答案

您可以使用EntityCollection 同时添加多个引脚。

<小时/>

示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=de-de" type="text/javascript" charset="UTF-8"></script>
</head>
<body onload="init()">


<div id="map" style="position: relative; width: 800px; height: 300px;"></div>


<script type="text/javascript">
function init(){

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


// Creates a collection to store multiple pins
var pins = new Microsoft.Maps.EntityCollection();

// Creates 5 random pins
for (var i = 0; i < 5; i++){
// A random position
var position = new Microsoft.Maps.Location(Math.random() * 45, Math.random() * 90);

// Creates a Pushpin
var pin = new Microsoft.Maps.Pushpin(position);

// Adds the pin to the collection instead of adding it directly to the Map
pins.push(pin);
}

// Adds all pins at once
map.entities.push(pins);
}
</script>


</body>
</html>
<小时/>

另外,这里还有一个example using JSON and jQuery .

关于bing-maps - Bing map 添加多个图钉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4466893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com