1

从以下示例代码开始(来自https://google-developers.appspot.com/maps/documentation/javascript/overlays#SimpleIcons

   <!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <style type="text/css">
      html { height: 100% }
      body { height: 100%; margin: 0; padding: 0 }
      #map_canvas { height: 100% }
    </style>
    <script type="text/javascript"
      src="http://maps.googleapis.com/maps/api/js?key=AIzaSyCHgCs40BzMLmN2-GpJ-liYfcYsas-VVsI&sensor=false">
    </script>
    <script type="text/javascript">
function initialize() {
  var mapOptions = {
    zoom: 10,
    maxZoom: 12,
    center: new google.maps.LatLng(-33.9, 151.2),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"),
                                mapOptions);

  setMarkers(map, beaches);
}

/**
 * Data for the markers consisting of a name, a LatLng and a zIndex for
 * the order in which these markers should display on top of each
 * other.
 */

 var beaches = (function () {
    var json = null;
    $.ajax({
        'async': false,
        'global': false,
        'url': data.php,
        'dataType': "json",
        'success': function (data) {
            json = data;
        }
    });
    return json;
    alert("OK, data loaded");
}); 



/*var beaches = [
  ['Stuttgart', 48.766700, 9.183330, 4],
  ['Coogee Beach', -33.923036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 151.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.259302, 1]
];
*/
function setMarkers(map, locations) {
  // Add markers to the map

  // Marker sizes are expressed as a Size of X,Y
  // where the origin of the image (0,0) is located
  // in the top left of the image.

  // Origins, anchor positions and coordinates of the marker
  // increase in the X direction to the right and in
  // the Y direction down.
  var image = new google.maps.MarkerImage('images/beachflag.png',
      // This marker is 20 pixels wide by 32 pixels tall.
      new google.maps.Size(20, 32),
      // The origin for this image is 0,0.
      new google.maps.Point(0,0),
      // The anchor for this image is the base of the flagpole at 0,32.
      new google.maps.Point(0, 32));
  var shadow = new google.maps.MarkerImage('images/beachflag_shadow.png',
      // The shadow image is larger in the horizontal dimension
      // while the position and offset are the same as for the main image.
      new google.maps.Size(37, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));
      // Shapes define the clickable region of the icon.
      // The type defines an HTML <area> element 'poly' which
      // traces out a polygon as a series of X,Y points. The final
      // coordinate closes the poly by connecting to the first
      // coordinate.
  var shape = {
      coord: [1, 1, 1, 20, 18, 20, 18 , 1],
      type: 'poly'
  };
  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        shadow: shadow,
        icon: image,
        shape: shape,
        title: beach[0],
        zIndex: beach[3]
    });
  }
}
    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width:100%; height:100%"></div>
  </body>
</html>

我可以从外部文件加载点吗?使用此解决方案将json 加载到变量中,我进行了以下操作:

var beaches = (function () {
    var json = null;
    $.ajax({
        'async': false,
        'global': false,
        'url': data.json,
        'dataType': "json",
        'success': function (data) {
            json = data;
        }
    });
    return json;
})(); 

但文件海滩列表似乎不是格式良好的 JSON 文件!文件数据.json:

beaches: [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 151.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.259302, 1]
];
4

3 回答 3

3

您当前的 JSON 存在一些问题:

  • 您使用单引号而不是双引号。在 JSON 中,字符串必须用双引号括起来。
  • 您的“海滩”属性也必须用引号括起来。
  • 您必须通过将 JSON 包裹在大括号 ( {}) 中来使其成为对象。

尝试以下 JSON:

{
    "beaches": [
        [
            "BondiBeach",
            -33.890542,
            151.274856,
            4
        ],
        [
            "CoogeeBeach",
            -33.923036,
            151.259052,
            5
        ],
        [
            "CronullaBeach",
            -34.028249,
            151.157507,
            3
        ],
        [
            "ManlyBeach",
            -33.80010128657071,
            151.28747820854187,
            2
        ],
        [
            "MaroubraBeach",
            -33.950198,
            151.259302,
            1
        ]
    ]
}
于 2012-08-26T19:51:27.797 回答
1

似乎是澳大利亚的一项热门活动。见下文:

使用自定义信息框从 Excel 批量上传标记

于 2013-07-03T20:56:40.083 回答
0

这不是有效的JSON格式。看起来您需要通过将其包含在 {} 中来使其成为对象。

于 2012-08-26T19:41:23.567 回答