嵌入bing地图 - 图钉

时间:2013-02-21 10:29:31

标签: bing-maps bing

我正在尝试将bing地图嵌入到网页中并且它可以工作,但我想在网页上的嵌入式地图中显示图钉。我可以看到它是不可能的。有谁知道怎么做?

<div id="mapviewer"><iframe id="map" scrolling="no" width="500" height="400" frameborder="0" src="http://www.bing.com/maps/embed/?v=2&amp;cp=45.810280~15.957222&amp;lvl=4&amp;dir=0&amp;sty=r&amp;cid=AF2FECA12C1AA81D!196&amp;form=LMLTEW&amp;emid=8841ff8b-025d-e5a7-e37f-39b4d31b3b93"></iframe><div id="LME_maplinks" style="line-height:20px;"><a id="LME_largerMap" href="http://www.bing.com/maps/?v=2&amp;cp=45.810280~15.957222&amp;lvl=4&amp;dir=0&amp;sty=r&amp;cid=AF2FECA12C1AA81D!196&amp;form=LMLTEW" target="_blank" style="margin:0 7px">View Larger Map</a><a id="LME_directions" href="http://www.bing.com/maps/?v=2&amp;cp=45.810280~15.957222&amp;lvl=4&amp;dir=0&amp;sty=r&amp;cid=AF2FECA12C1AA81D!196&amp;form=LMLTEW&amp;rtp=%7Epos.45.810279846_15.957221984000004_" target="_blank" style="margin:0 7px">Driving Directions</a></div></div>

1 个答案:

答案 0 :(得分:3)

您可以在嵌入式地图中使用带有'pushpins'参数的图钉,请参阅MSDN:

http://msdn.microsoft.com/en-us/library/ee692180.aspx

以下是一个例子:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
   <head>
      <title>Embedded Map</title>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   </head>
   <body style="font-family:Arial">
      <p>A simple embedded map.</p>
      <iframe width="400" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
         src="http://dev.virtualearth.net/embeddedMap/v1/ajax/aerial?zoomLevel=10&center=47.5_-122.5&pushpins=47.5_-122.5"/>
   </body>
</html>

以下是可用选项的示例:

mapMode
地图的风格。有效值包括:Road,Aerial,AerialWithLabels,Birdseye,BirdseyeWithLabels

个zoomLevel 的 一个int,表示地图样式的有效缩放级别。

中心
由下划线分隔的两个双精度数,是地图中心坐标的纬度和经度值。

标题
一个双精度,以度为单位指定地图的方向。

图钉
由下划线分隔的两个双精度数,是图钉坐标的纬度和经度值。多个图钉位置由〜。

分隔

文化
有效的文化字符串。默认值为“en-us”。