0

我已经使用 VB 创建了一个 JSON 标记对象。

    Dim nearbyLocations = CType(sqldata.Select(DataSourceSelectArguments.Empty),
                                DataView)

    For Each location As DataRowView In nearbyLocations
        markers.Add(
             String.Format(
                 "{{ title: ""AccName:{0}"", position: new google.maps.LatLng({1}, {2})}}", 
                     location("accgrpname"), 
                     location("Lat"), 
                     location("Long")))            
    Next

    Dim locationsJson = "[" & String.Join(",", markers.ToArray()) & "]"

我将如何在 javascript 中引用此对象以在地图上绘制?

最终的 JSON 如下:

    [{ title: "AccName: Name", position: new google.maps.LatLng(51.0000, -0.1000)}]

谢谢

4

1 回答 1

0

我假设您使用 AJAX 调用来加载使用 VB 代码创建的 JSON 对象。您可以使用 JQuery 来简化您的 ajax 调用,并且您收到的数据将为您转换为 JavaScript 对象。

一个快速示例看起来像(未经测试的代码):

    $.ajax({
        url: service,  //your VB service
        dataType: 'json',  //could be JSONP 
        success: function(data){ var mk = new google.maps.Marker(data); }
    });
于 2012-07-27T15:19:52.757 回答