0

这是我得到的代码;

 <script type="text/javascript" src="http://tile.cloudmade.com/wml/latest/web-maps-lite.js"></script>
  <script type="text/javascript">

    var cloudmade = new CM.Tiles.CloudMade.Web({key: '1b67988f99f947e3bd06fbcf924aeda1', styleId:19933});
    var map = new CM.Map('mapa', cloudmade);
    map.setCenter(new CM.LatLng(-24.900, -83.000), 4);

    var bottomRight = new CM.ControlPosition(CM.BOTTOM_RIGHT, new CM.Size(50, 20));
    map.addControl(new CM.SmallMapControl(), bottomRight);

    var CloudMadeIcon = new CM.Icon();
    CloudMadeIcon.image = "http://remidia.com.br/autopauta/wp-content/uploads/2010/marcador.gif";
    CloudMadeIcon.iconSize = new CM.Size(10, 10);


    var areiaGrande = new CM.LatLng(-9.253,-41.108);
    var areiaMarker = new CM.Marker (areiaGrande, {
    title: "Areia Grande (Casa Nova/BA)",
    icon: CloudMadeIcon, clickable:true, 

    });



    map.addOverlay(areiaMarker);




   </script>

如何将链接(例如:href“ http://www.areia.com ”)添加到“areiaMarker”变量?

4

1 回答 1

0

在 CloudMade Web Maps API 中不能使用标题作为链接,但您可以使用 InfoWindow。

这是一个示例:http: //developers.cloudmade.com/projects/web-maps-api/examples/info-window

于 2010-11-15T09:30:14.620 回答