Я только начал изучать CesiumJS и хочу выдавливать свои данные о зданиях GeoJSON.
Насколько я понимаю, extrudeHeight, похоже, работает только для полигонов.Однако мои данные в формате "LineString".
Прикрепленные коды ниже показывают, что я пробовал до сих пор.Могу ли я знать, что я здесь делаю не так?Буду очень признателен за любую помощь, которую я могу получить!
dataSource1.loadUrl('data/buildings.json').then(function(loadedDatasource) {
viewer.dataSources.add(loadedDatasource);
var entities = loadedDatasource.entities.entities;
var colorHash = {};
for (var i = 0; i < 1; i++) {
var entity = entities[i];
entity.polyline = new Cesium.ColorMaterialProperty.fromColor(new Cesium.Color(1.0, 1.0, 1.0, 0));
entity.polyline.outlineColor = new Cesium.ConstantProperty(new Cesium.Color(1, 1, 1, 0.48));
entity.polyline.outlineWidth = new Cesium.ConstantProperty(0.5);
entity.polyline.outline = true;
entity.polyline.extrudedHeight = new Cesium.ConstantProperty(entity.properties.buildingLevels * 5.0);
entity.building = true;
}
}
GeoJSON:
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[103.8518324,1.2843096],[103.8522078,1.284276],[103.8522253,1.2842654],[103.8522361,1.2842455],[103.8522209,1.2840604],[103.8521175,1.2840652],[103.8521138,1.2840226],[103.8518128,1.2840482],[103.851781,1.2840535],[103.8517572,1.2840662],[103.8517338,1.2840891],[103.8517138,1.2841128],[103.8517016,1.2841443],[103.851698,1.2841847],[103.8517047,1.2842194],[103.8517208,1.2842492],[103.8517546,1.2842777],[103.851795,1.2842959],[103.8518285,1.2842935],[103.8518324,1.2843096]]},"properties":{"name":"Chevron House","height":"151","building":"yes","old_name":"Caltex House","wikidata":"Q2934405","addr:city":"Singapore","min_height":"16","addr:street":"Raffles Place","roof:colour":"#f9fdfe","addr:country":"SG","addr:postcode":"039803","building:colour":"#f9fdfe","buildingLevels":"33","addr:housenumber":"30","building:min_level":"3"}}