Google 地图 Javascript API 明确访问 GeoJSON 功能 属性

Google Maps Javascript API access GeoJSON feature property explicitly

我已经使用 Google 地图 Javascript API 几个星期了。在将 geoJSON 添加到地图并成为地图的要素后,我无法访问它的 属性。

例如,假设我有这个示例 geoJSON

var geo = {"type":"FeatureCollection","features":[
              {"type":"Feature","id":"country","properties":
                  {"name":"ExampleCountry"},"geometry":  {exampleGeometry}}
          ]};

假设我加载了 geoJSON 并想访问我刚刚添加的功能的 ID 属性。 feature.idfeature.getProperty('id') 在这种情况下都不起作用。通过调试,我发现我可以通过 feature.F 访问 'id' 属性。该解决方案在数周内都运行良好,但出于某种原因,上周它停止工作了。我不得不使用 feature.K 来访问 ID 属性.

var mapOptions = {
      center: { lat: -34.397, lng: 150.644},
      zoom: 8
    };
    map = new google.maps.Map(document.getElementById('map-canvas'), {mapOptions});

 map.data.loadGeoJson(geo);
 map.data.forEach(function(feature) {
     //Used to Work, randomly stopped working last week (feature.F is undefined)
     var id = feature.F;
     //New Solution
     var id = feature.K;
 });

这似乎不是一个永久的解决方案。有谁知道这是怎么发生的?

特征的id不是geoJSON意义上的"property"。

对于featureid有一个getter-方法,使用:

 feature.getId()//should return 'country'

当您想获得 属性(存储在属性成员中)时,使用例如

 feature.getProperty('name')//should return 'ExampleCountry'