forked from TerriaJS/RaPPMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
151 lines (129 loc) · 7.52 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
'use strict';
/*global require,window */
var configuration = {
bingMapsKey: undefined, // use Cesium key
};
// Check browser compatibility early on.
// A very old browser (e.g. Internet Explorer 8) will fail on requiring-in many of the modules below.
// 'ui' is the name of the DOM element that should contain the error popup if the browser is not compatible
//var checkBrowserCompatibility = require('terriajs/lib/ViewModels/checkBrowserCompatibility');
// checkBrowserCompatibility('ui');
import React from 'react';
import defined from 'terriajs-cesium/Source/Core/defined';
import GoogleAnalytics from 'terriajs/lib/Core/GoogleAnalytics';
import ShareDataService from 'terriajs/lib/Models/ShareDataService';
import OgrCatalogItem from 'terriajs/lib/Models/OgrCatalogItem';
import raiseErrorToUser from 'terriajs/lib/Models/raiseErrorToUser';
import registerAnalytics from 'terriajs/lib/Models/registerAnalytics';
import registerCatalogMembers from 'terriajs/lib/Models/registerCatalogMembers';
import registerCustomComponentTypes from 'terriajs/lib/ReactViews/Custom/registerCustomComponentTypes';
import Terria from 'terriajs/lib/Models/Terria';
import updateApplicationOnHashChange from 'terriajs/lib/ViewModels/updateApplicationOnHashChange';
import updateApplicationOnMessageFromParentWindow from 'terriajs/lib/ViewModels/updateApplicationOnMessageFromParentWindow';
import ViewState from 'terriajs/lib/ReactViewModels/ViewState';
import BingMapsSearchProviderViewModel from 'terriajs/lib/ViewModels/BingMapsSearchProviderViewModel.js';
import GazetteerSearchProviderViewModel from 'terriajs/lib/ViewModels/GazetteerSearchProviderViewModel.js';
import GnafSearchProviderViewModel from 'terriajs/lib/ViewModels/GnafSearchProviderViewModel.js';
import render from './lib/Views/render';
import WebProcessingServiceCatalogFunction from 'terriajs/lib/Models/WebProcessingServiceCatalogFunction';
import ParameterEditor from 'terriajs/lib/ReactViews/Analytics/ParameterEditor';
import geoJsonParameterConverter from './lib/CustomParameters/geoJsonParameterConverter';
import GeoJsonParameterEditor from './lib/Views/GeoJsonParameterEditor';
import SelectAPolygonParameterEditor from './lib/Views/SelectAPolygonParameterEditor';
// Tell the OGR catalog item where to find its conversion service. If you're not using OgrCatalogItem you can remove this.
OgrCatalogItem.conversionServiceBaseUrl = configuration.conversionServiceBaseUrl;
WebProcessingServiceCatalogFunction.parameterConverters.push(geoJsonParameterConverter());
ParameterEditor.parameterTypeConverters.push({
id: 'geojson',
parameterTypeToDiv: function GeoJsonParameterToDiv(type, parameterEditor) {
if (type === this.id) {
return (<div>
{parameterEditor.renderLabel()}
<GeoJsonParameterEditor
previewed={parameterEditor.props.previewed}
viewState={parameterEditor.props.viewState}
parameter={parameterEditor.props.parameter}
/>
</div>);
}
}
});
// Register all types of catalog members in the core TerriaJS. If you only want to register a subset of them
// (i.e. to reduce the size of your application if you don't actually use them all), feel free to copy a subset of
// the code in the registerCatalogMembers function here instead.
registerCatalogMembers();
registerAnalytics();
// Construct the TerriaJS application, arrange to show errors to the user, and start it up.
var terria = new Terria({
appName: "GEOGLAM RAPP",
supportEmail: "[email protected]",
baseUrl: "build/TerriaJS",
cesiumBaseUrl: undefined, // for default
analytics: new GoogleAnalytics()
});
// Register custom components in the core TerriaJS. If you only want to register a subset of them, or to add your own,
// insert your custom version of the code in the registerCustomComponentTypes function here instead.
registerCustomComponentTypes(terria);
terria.welcome = '<h3>Terria<sup>TM</sup> is a spatial data platform that provides spatial predictive analytics</h3><div class="body-copy"><p>This interactive map uses TerriaJS<sup>TM</sup>, an open source software library developed by Data61 for building rich, web-based geospatial data explorers. It uses Cesium<sup>TM</sup> open source 3D globe viewing software. TerriaJS<sup>TM</sup> is used for the official Australian Government NationalMap and many other sites rich in the use of spatial data.</p><p>This map also uses Terria<sup>TM</sup> Inference Engine, a cloud-based platform for making probabilistic predictions using data in a web-based mapping environment. Terria<sup>TM</sup> Inference Engine uses state of the art machine learning algorithms developed by Data61 and designed specifically for large-scale spatial inference.</p></div>';
// Create the ViewState before terria.start so that errors have somewhere to go.
const viewState = new ViewState({
terria: terria
});
if (process.env.NODE_ENV === "development") {
window.viewState = viewState;
}
// If we're running in dev mode, disable the built style sheet as we'll be using the webpack style loader.
// Note that if the first stylesheet stops being nationalmap.css then this will have to change.
if (process.env.NODE_ENV !== "production" && module.hot) {
document.styleSheets[0].disabled = true;
}
terria.start({
// If you don't want the user to be able to control catalog loading via the URL, remove the applicationUrl property below
// as well as the call to "updateApplicationOnHashChange" further down.
applicationUrl: window.location,
configUrl: 'config.json',
defaultTo2D: true,
shareDataService: new ShareDataService({
terria: terria
})
}).otherwise(function(e) {
raiseErrorToUser(terria, e);
}).always(function() {
try {
configuration.bingMapsKey = terria.configParameters.bingMapsKey ? terria.configParameters.bingMapsKey : configuration.bingMapsKey;
viewState.searchState.locationSearchProviders = [
new BingMapsSearchProviderViewModel({
terria: terria,
key: configuration.bingMapsKey
}),
new GazetteerSearchProviderViewModel({terria}),
new GnafSearchProviderViewModel({terria})
];
// Automatically update Terria (load new catalogs, etc.) when the hash part of the URL changes.
updateApplicationOnHashChange(terria, window);
updateApplicationOnMessageFromParentWindow(terria, window);
// Create the various base map options.
var createGlobalBaseMapOptions = require('./lib/ViewModels/createGlobalBaseMapOptions');
var selectBaseMap = require('terriajs/lib/ViewModels/selectBaseMap');
var globalBaseMaps = createGlobalBaseMapOptions(terria, configuration.bingMapsKey);
selectBaseMap(terria, globalBaseMaps, 'Positron (Light)', false);
// Add the disclaimer, if specified
if (defined(terria.configParameters.globalDisclaimer)) {
var disclaimer = terria.configParameters.globalDisclaimer;
var message = '';
message += require('./lib/Views/GlobalDisclaimer.html');
var options = {
title: 'GEOGLAM RAPP Map',
confirmText: 'Continue',
width: 600,
height: 550,
message: message
};
viewState.notifications.push(options);
}
render(terria, globalBaseMaps, viewState);
} catch (e) {
console.error(e);
console.error(e.stack);
}
});