使用scene.addVectorTilesMap加载矢量瓦片后,mvtLayer.mapboxStyle为空,打印mvtLayer如下图
您好,获取瓦片风格需要在瓦片加载完成成后才能获取,通过过以下代码,在cesium.when()的回调函数中获得
var layerReadyPromise = mvtLayer.readyPromise; Cesium.when(layerReadyPromise, function (data) {console.log(mvtMap.mapboxStyle);})
参考:http://support.supermap.com.cn:8090/webgl/examples/webgl/editor.html#MVT