Cesium Note17:添加罗盘

Cesium Note17:添加罗盘

安装插件

使用插件cesium-navigation-es6
npm i cesium-navigation-es6

使用

import CesiumNavigation from "cesium-navigation-es6"; // 罗盘控件 proxy.options = {}; // 用于在使用重置导航重置地图视图时设置默认视图控制。接受的值是Cesium.Cartographic 和Cesium.Rectangle. proxy.options.defaultResetView = Cesium.Cartographic.fromDegrees(110, 30, 2000000); // 用于启用或禁用罗盘。true是启用罗盘,false是禁用罗盘。默认值为true。如果将选项设置为false,则罗盘将不会添加到地图中。 proxy.options.enableCompass = true; // 用于启用或禁用缩放控件。true是启用,false是禁用。默认值为true。如果将选项设置为false,则缩放控件 将不会添加到地图中。 proxy.options.enableZoomControls = true; // 用于启用或禁用距离图例。true是启用,false是禁用。默认值为true。如果将选项设置为false,距离图例将不会添加到地图中。 proxy.options.enableDistanceLegend = true; // 用于启用或禁用指南针外环。true是启用,false是禁用。默认值为true。如果将选项设置为false,则该环将可见但无效。 proxy.options.enableCompassOuterRing = true; new CesiumNavigation(proxy.viewer, proxy.options);

CSS