Yann Voumard 1f7f6f3fb5 Add small app showing how to use ESA Sentinel data with the WMTS feature (#163)
* Added basic app showing WMTS using Sinergise’s Sentinel Hub

* Complete the Sentinel WMTS app

* Add requested changes

* Change instance ID
2017-07-26 16:25:23 -07:00

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();
});