Skip to content

Commit

Permalink
update dglux build
Browse files Browse the repository at this point in the history
  • Loading branch information
rinick committed Apr 16, 2019
1 parent 2cbe938 commit dd06f00
Show file tree
Hide file tree
Showing 14 changed files with 61,243 additions and 60,905 deletions.
2 changes: 1 addition & 1 deletion www/dglux5/REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.8709
1.1.8784F
10 changes: 9 additions & 1 deletion www/dglux5/js/esri_map_startup.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@ function dg_js_init_esri_map(callback) {
require([
"esri/Map",
"esri/views/MapView",
"esri/views/SceneView",
"esri/geometry/Geometry",
"esri/geometry/Point",
"esri/geometry/ScreenPoint",
"esri/geometry/Extent",
"esri/geometry/SpatialReference",
"esri/layers/FeatureLayer"
], function(Map, MapView, Point, ScreenPoint, FeatureLayer) {
], function(Map, MapView, SceneView, Geometry, Point, ScreenPoint, Extent, SpatialReference, FeatureLayer) {
var context = {};
context['Map'] = Map;
context['MapView'] = MapView;
context['SceneView'] = SceneView;
context['Geometry'] = Geometry;
context['Point'] = Point;
context['ScreenPoint'] = ScreenPoint;
context['Extent'] = Extent;
context['SpatialReference'] = SpatialReference;

if (!CSSStyleSheet.prototype.removeRule) {
CSSStyleSheet.prototype.removeRule = CSSStyleSheet.prototype.deleteRule;
Expand Down
Loading

0 comments on commit dd06f00

Please sign in to comment.