0
設定方法Google Map's feature'sid
geojsonから?geojsonからGoogleマップの機能IDを設定するにはどうすればよいですか?
id
は、getId()
機能によって返されるものです。
id
プロパティのプロパティに存在するが、次のコードは、(プリントをundefined
)動作しない:
var uluru = {lat: -25.363, lng: 131.044};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
var data = {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [131.044, -25.363]
},
"properties": {
"Id": 12
}
};
map.data.addGeoJson(data);
map.data.forEach(function(feature){
console.log("Id from Google's feature: " + feature.getId());
});
フィドル:https://jsfiddle.net/dimskraft/hj2t5je3/5/
UDPATE
Iは
var data = {
"type": "Feature",
"id": 13,
"geometry": {
"type": "Point",
"coordinates": [131.044, -25.363]
},
を書き込むことができます
これは間違ったGeojsonではありませんか?
これに関するGoogleのドキュメントは明確ではありませんが、.loadGeoJsonメソッドを使用するときにオプションを追加することもできます – Mackija