我有一个包含多个地址的表格,包括他们的Lat / Long坐标,我想使用asp.net webforms和Google Maps Javascript API V3将这些标记中的许多标记一次放到谷歌地图上. 教程显示了如何添加一个标记: htt
教程显示了如何添加一个标记:
http://code.google.com/apis/maps/documentation/javascript/overlays.html#Markers
var myLatlng = new google.maps.LatLng(-25.363882,131.044922); var myOptions = { zoom: 4, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, title:"Hello World!" });
我的问题是,在我加载了多个地址服务器端(代码隐藏)之后,将这个集输出到html中的好方法是什么,这样客户端javascript就可以迭代集合并将标记放到地图上.
更新
如果我已经创建了我的集合,那么在渲染时将其推送到页面的html中是一种不错的方式,而无需调用外部脚本? (将复杂的过滤器参数传递给脚本会很复杂,所以我宁愿避免这种情况.)我是否应该使用stringbuilder来构造包含正确的json数组的javascript函数,然后将该函数附加到页面?这可行,但似乎不太合适.
你可以采用你建议的方法.这是一个非常简单的示例,显示了使用v3 API绘制多个标记是多么容易:
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>Google Maps Multiple Markers</title> <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> <script type="text/javascript"> var map; // Cretes the map function initialize() { map = new google.maps.Map(document.getElementById('map'), { zoom: 10, center: new google.maps.LatLng(-33.92, 151.25), mapTypeId: google.maps.MapTypeId.ROADMAP }); } // This function takes an array argument containing a list of marker data function generateMarkers(locations) { for (var i = 0; i < locations.length; i++) { new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map, title: locations[i][0] }); } } </script> </head> <body> <div id="map" style="width: 500px; height: 400px;"></div> </body> </html>
然后,要生成标记,您可以将以下脚本转储到< body>中的任何位置.标签.
<body> <div id="map" style="width: 500px; height: 400px;"></div> <script type="text/javascript"> window.onload = function () { initialize(); generateMarkers( ['Bondi Beach', -33.890542, 151.274856], ['Coogee Beach', -33.923036, 151.259052], ['Cronulla Beach', -34.028249, 151.157507], ['Manly Beach', -33.800101, 151.287478], ['Maroubra Beach', -33.950198, 151.259302] ); }; </script> </body>
您只需要从服务器端数据集生成数组文字[‘Bondi Beach’, – 33.890542,151.274856],因为其余部分是静态的.确保最后一个元素不以逗号结尾.