vue-cesium
Version:
Vue 3.x components for CesiumJS.
40 lines (38 loc) • 755 B
JavaScript
var distancelegendDefaultProps = {
position: {
type: String,
default: "bottom-right",
validator: (v) => ["top-right", "top-left", "bottom-right", "bottom-left", "top", "right", "bottom", "left"].includes(v)
},
offset: {
type: Array,
validator: (v) => v.length === 2
},
color: {
type: String,
default: "#fff"
},
background: {
type: String,
default: "#3f4854"
},
width: {
type: Number,
default: 100
},
barBackground: {
type: String,
default: "#fff"
},
customClass: {
type: String,
default: ""
},
teleportToViewer: {
type: Boolean,
default: true
}
};
export { distancelegendDefaultProps as default };
//# sourceMappingURL=defaultProps.mjs.map
;