6
A
回答
8
您可以使用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。
相關問題
- 1. 將多個圖標添加到Bing地圖API的圖釘v8
- 2. 將多個圖釘添加到bing地圖
- 3. 添加圖釘從ObservableCollection地圖
- 4. 在Bing地圖中添加圖釘
- 5. 電話7必應地圖控制 - 在點擊時添加圖釘
- 6. 必應地圖懸停航點圖釘圖標
- 7. 必應地圖Ajax 7.0圖釘文本不顯示
- 8. 必應地圖v8 - 取消選定的圖釘事件
- 9. 必應地圖圖釘處理gridview複選框
- 10. bing地圖圖釘
- 11. 在ASP.net中添加圖釘到bing地圖視圖MVC3
- 12. MapView一旦向地圖視圖中添加更多圖釘就會崩潰
- 13. 如何在谷歌地圖iOS中添加放置圖釘
- 14. Silverlight - 通過C#將圖釘添加到Bing地圖
- 15. 在Tap bing地圖控件上添加圖釘 - windows phone
- 16. 如何使用jQuery和JSON添加圖釘到谷歌地圖
- 17. 如何在地圖圖釘內容中添加換行符?
- 18. WP7必應地圖插圖 - 如何調整自定義圖釘的位置?
- 19. iphone地圖圖釘替代
- 20. 嵌入bing地圖 - 圖釘
- 21. 當圖釘(圖層)接近圖標(必應地圖V8)時,地圖上的其他圖標消失?
- 22. 如何在離線地圖圖塊中放置多個圖釘,並且還可以獲得更多圖釘?
- 23. 在Windows窗體應用程序的Bing地圖上添加圖釘
- 24. 添加文本和圖標在Bing地圖中用於Android的圖釘圖像
- 25. Bing地圖中信息框的多個圖釘
- 26. 如何在冰箭地圖上顯示多個圖釘
- 27. 在Bing地圖上顯示多個圖釘WPF
- 28. 多個圖釘Bing地圖窗口手機7
- 29. 帶自定義HTML信息框的多個Bing地圖圖釘
- 30. Bing地圖窗口上的多個圖釘8.1