mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2026-01-18 15:12:57 +00:00
* Added basic app showing WMTS using Sinergise’s Sentinel Hub * Complete the Sentinel WMTS app * Add requested changes * Change instance ID
15 lines
335 B
JavaScript
15 lines
335 B
JavaScript
/*
|
|
* Copyright (C) 2017 United States Government as represented by the Administrator of the
|
|
* National Aeronautics and Space Administration. All Rights Reserved.
|
|
*/
|
|
|
|
requirejs.config({
|
|
"paths": {
|
|
"SentinelWMTS": "SentinelWMTS"
|
|
}
|
|
});
|
|
|
|
requirejs(["SentinelWMTS"], function (SentinelWMTS) {
|
|
new SentinelWMTS();
|
|
});
|