2016-01-15 01:08:19 +00:00
|
|
|
/*****************************************************************************
|
2018-05-14 22:46:17 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2018, United States Government
|
2016-01-15 01:08:19 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2016-01-15 01:08:19 +00:00
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2016-01-15 01:08:19 +00:00
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
define([
|
|
|
|
"./src/policies/ImageryViewPolicy",
|
|
|
|
"./src/controllers/ImageryController",
|
|
|
|
"./src/directives/MCTBackgroundImage",
|
2018-08-07 21:47:50 +00:00
|
|
|
"./res/templates/imagery.html",
|
2016-01-15 01:08:19 +00:00
|
|
|
'legacyRegistry'
|
|
|
|
], function (
|
|
|
|
ImageryViewPolicy,
|
|
|
|
ImageryController,
|
|
|
|
MCTBackgroundImage,
|
2016-02-26 21:07:50 +00:00
|
|
|
imageryTemplate,
|
2016-01-15 01:08:19 +00:00
|
|
|
legacyRegistry
|
|
|
|
) {
|
|
|
|
|
|
|
|
legacyRegistry.register("platform/features/imagery", {
|
|
|
|
"name": "Plot view for telemetry",
|
|
|
|
"extensions": {
|
|
|
|
"views": [
|
|
|
|
{
|
|
|
|
"name": "Imagery",
|
|
|
|
"key": "imagery",
|
2017-02-15 23:02:39 +00:00
|
|
|
"cssClass": "icon-image",
|
2016-02-26 21:07:50 +00:00
|
|
|
"template": imageryTemplate,
|
2016-01-15 01:08:19 +00:00
|
|
|
"priority": "preferred",
|
|
|
|
"needs": [
|
|
|
|
"telemetry"
|
|
|
|
],
|
2017-06-26 17:31:39 +00:00
|
|
|
"editable": false
|
2016-01-15 01:08:19 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"policies": [
|
|
|
|
{
|
|
|
|
"category": "view",
|
2017-05-23 01:30:01 +00:00
|
|
|
"implementation": ImageryViewPolicy,
|
|
|
|
"depends": [
|
|
|
|
"openmct"
|
|
|
|
]
|
2016-01-15 01:08:19 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"controllers": [
|
|
|
|
{
|
|
|
|
"key": "ImageryController",
|
|
|
|
"implementation": ImageryController,
|
|
|
|
"depends": [
|
|
|
|
"$scope",
|
2017-06-26 17:31:39 +00:00
|
|
|
"$window",
|
2017-07-14 20:05:59 +00:00
|
|
|
"$element",
|
2017-05-23 01:30:01 +00:00
|
|
|
"openmct"
|
2016-01-15 01:08:19 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctBackgroundImage",
|
|
|
|
"implementation": MCTBackgroundImage,
|
|
|
|
"depends": [
|
|
|
|
"$document"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|