Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fly to data on load #2601

Merged
merged 6 commits into from
May 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Apps/CesiumViewer/CesiumViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ define([
context.throwOnWebGLError = true;
}

var view = endUserOptions.view;
var source = endUserOptions.source;
if (defined(source)) {
var loadPromise;
Expand All @@ -120,6 +121,8 @@ define([
var error = 'No entity with id "' + lookAt + '" exists in the provided data source.';
showLoadError(source, error);
}
} else if (!defined(view)) {
viewer.flyTo(dataSource);
}
}).otherwise(function(error) {
showLoadError(source, error);
Expand All @@ -142,7 +145,6 @@ define([
}
}

var view = endUserOptions.view;
if (defined(view)) {
var splitQuery = view.split(/[ ,]+/);
if (splitQuery.length > 1) {
Expand Down
25 changes: 24 additions & 1 deletion Source/Widgets/Viewer/viewerDragDropMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ define([
* @param {Object} [options] Object with the following properties:
* @param {Element|String} [options.dropTarget=viewer.container] The DOM element which will serve as the drop target.
* @param {Boolean} [options.clearOnDrop=true] When true, dropping files will clear all existing data sources first, when false, new data sources will be loaded after the existing ones.
* @param {Boolean} [options.flyToOnDrop=true] When true, dropping files will fly to the data source once it is loaded.
* @param {DefaultProxy} [options.proxy] The proxy to be used for KML network links.
*
* @exception {DeveloperError} Element with id <options.dropTarget> does not exist in the document.
Expand Down Expand Up @@ -66,12 +67,16 @@ define([
if (viewer.hasOwnProperty('clearOnDrop')) {
throw new DeveloperError('clearOnDrop is already defined by another mixin.');
}
if (viewer.hasOwnProperty('flyToOnDrop')) {
throw new DeveloperError('flyToOnDrop is already defined by another mixin.');
}
//>>includeEnd('debug');

options = defaultValue(options, defaultValue.EMPTY_OBJECT);

//Local variables to be closed over by defineProperties.
var dropEnabled = true;
var flyToOnDrop = true;
var dropError = new Event();
var clearOnDrop = defaultValue(options.clearOnDrop, true);
var dropTarget = defaultValue(options.dropTarget, viewer.container);
Expand Down Expand Up @@ -149,6 +154,20 @@ define([
}
},

/**
* Gets or sets a value indicating if the camera should fly to the data source after it is loaded.
* @memberof viewerDragDropMixin.prototype
* @type {Boolean}
*/
flyToOnDrop : {
get : function() {
return flyToOnDrop;
},
set : function(value) {
flyToOnDrop = value;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason we do this, as opposed to having a simple property, or knockout? Just curious.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like proxy and clearOnDrop are simple get/set as well, so I was most likely just following suit. I'm not sure why they are though, so I'll change them and see what happens.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I had a suspicion the reason was jsDoc and I was right. For some reason assigning the value directly to viewer and documenting it causes it not to show up in the doc. So we'll just leave it the way it is for now.

}
},

/**
* Gets or sets the proxy to be used for KML.
* @memberof viewerDragDropMixin.prototype
Expand Down Expand Up @@ -242,7 +261,11 @@ define([
}

if (defined(loadPromise)) {
viewer.dataSources.add(loadPromise).otherwise(function(error) {
viewer.dataSources.add(loadPromise).then(function(dataSource) {
if (viewer.flyToOnDrop) {
viewer.flyTo(dataSource);
}
}).otherwise(function(error) {
viewer.dropError.raiseEvent(viewer, fileName, error);
});
}
Expand Down
8 changes: 8 additions & 0 deletions Specs/Widgets/Viewer/viewerDragDropMixinSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,14 @@ defineSuite([
}).toThrowDeveloperError();
});

it('throws if flyToOnDrop property already added by another mixin.', function() {
viewer = new Viewer(container);
viewer.flyToOnDrop = true;
expect(function() {
viewer.extend(viewerDragDropMixin);
}).toThrowDeveloperError();
});

it('setting dropTarget to undefined throws exception', function() {
viewer = new Viewer(container);
viewer.extend(viewerDragDropMixin);
Expand Down