javascript - 带有数组数组的 json 对象

标签 javascript google-maps-api-3 geojson

我正在尝试使用 Google map API 在 Google map 上创建两个多边形。

我收到以下错误:

Error: Invalid value for constructor parameter 0: -94.963194,39.316858,-94.95967,39.32199,-94.95905,39.32172,-94.95846,39.3214,-94.95792,39.32104,-94.95742,39.32064,-94.95698,39.32021,-94.95625,39.31927,-94.95599,39.31876,-94.95578,39.31824,-94.95564,39.3177,-94.95557,39.31716,-94.95557,39.31661,-94.963194,39.316858

我希望有人能帮助解释我做错了什么,并提供解决方案。

<script
    src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=visualization">
</script>
<script>
var map;

function initialize() {
    var kansas_city = new google.maps.LatLng(39.00495613,-94.64780668);
    var mapOptions = {
        zoom: 10,
        center: kansas_city,
        mapTypeId: google.maps.MapTypeId.TERRAIN
    };
    map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);

        // Create a <script> tag and set the USGS URL as the source.
        var script = document.createElement('script');
        script.src = 'sector.json';
        document.getElementsByTagName('head')[0].appendChild(script);
}

  // Loop through the results array and place a marker for each
  // set of coordinates.
  window.sector_callback = function(results) {
  for (var i = 0; i < results.features.length; i++) {
      var coords = results.features[i].geometry.coordinates;
      alert(coords);
      var polygons = new google.maps.Polygon({
      path: coords,
      map: map
      });
  }
}
</script>

JSON 代码:

sector_callback({
    "type": "FeatureCollection",
    "features": [{
        "type": "Feature",
        "properties": {
            "Name": "1_1",
            "Description": ""
        },
        "geometry": {
            "type": "Polygon",
            "coordinates": [
                [
                    [-94.963194, 39.316858],
                    [-94.959670, 39.321990],
                    [-94.959050, 39.321720],
                    [-94.958460, 39.321400],
                    [-94.957920, 39.321040],
                    [-94.957420, 39.320640],
                    [-94.956980, 39.320210],
                    [-94.956250, 39.319270],
                    [-94.955990, 39.318760],
                    [-94.955780, 39.318240],
                    [-94.955640, 39.317700],
                    [-94.955570, 39.317160],
                    [-94.955570, 39.316610],
                    [-94.963194, 39.316858]
                ]
            ]
        }
    }, {
        "type": "Feature",
        "properties": {
            "Name": "214_1",
            "Description": ""
        },
        "geometry": {
            "type": "Polygon",
            "coordinates": [
                [
                    [-94.783917, 39.083417],
                    [-94.776470, 39.084670],
                    [-94.776340, 39.084140],
                    [-94.776290, 39.083590],
                    [-94.776300, 39.083040],
                    [-94.776380, 39.082500],
                    [-94.776530, 39.081960],
                    [-94.777020, 39.080940],
                    [-94.777360, 39.080460],
                    [-94.777760, 39.080000],
                    [-94.778210, 39.079570],
                    [-94.778710, 39.079180],
                    [-94.779260, 39.078830],
                    [-94.783917, 39.083417]
                ]
            ]
        }
    }]
});

最佳答案

您的多边形数组是一个数组的数组(以支持多边形中的多个路径)。 要访问您需要执行的操作(假设您有带有单个路径的简单多边形):

var coords = results.features[i].geometry.coordinates[0];

然后将它们转换为 google.maps.LatLng 对象:

path.push(new google.maps.LatLng(coords[j][1], coords[j][0]));

Working example

关于javascript - 带有数组数组的 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13089444/

相关文章:

javascript - 这个语法怎么称呼呢?

c - 用C解析geojson文件

php - onkeyup ="this.value = this.value.replace(/,/g,' .')"with php echo' '

javascript - Jquery 可排序不适用于触摸

ruby - 无法使用 Ruby 的 'open-uri' 打开 utf-8 URI

google-maps - 当关联的标记被隐藏时,如何清理信息窗口?

javascript - 将 Google map 坐标更改为 "Onclick"

d3.js - 欧洲的 D3 map 投影,如 Albert USA

javascript - 在 JavaScript 中计算两个多边形的重叠百分比

javascript - 从 React 导入值到 CSS 的高效方法