///////////////////////////////////////////////////////////////////////////
// Copyright © 2018 NarutoGIS. All Rights Reserved.
// 模块描述:按钮恢复全图视角
///////////////////////////////////////////////////////////////////////////
define([
'dojo/_base/declare',
'dojo/_base/lang',
'jimu/BaseWidget',
'dojo/_base/html',
'dojo/dom-construct',
'dojo/topic',
'dojo/on'
],
function (
declare,
lang,
BaseWidget,
html,
domConstruct,
topic,
on) {
var clazz = declare([BaseWidget], {
name: 'VrButton',
baseClass: 'jimu-widget-vrbutton',
postCreate: function () {
this.inherited(arguments);
},
startup: function () {
this.inherited(arguments);
new Cesium.VRButton(this.domNode, this.map.scene)
$('.cesium-vrButton').attr('title','VR模式');
$(".jimu-widget-vrbutton button.cesium-button").html("
");
$('.jimu-widget-vrbutton button.cesium-button').click(function () {
var title = $(this).attr('title');
if (title == "Exit VR mode") {
$(".jimu-widget-vrbutton button.cesium-button").html("
");
} else {
$(".jimu-widget-vrbutton button.cesium-button").html("
");
}
})
}
});
return clazz;
});