-
Notifications
You must be signed in to change notification settings - Fork 0
/
main app filteringSelect dojo exemplo.js
222 lines (197 loc) · 7.28 KB
/
main app filteringSelect dojo exemplo.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
define([
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/on",
"dojo/query",
"app/config",
"dijit/Dialog",
"esri/config",
"esri/map",
"esri/layers/ArcGISDynamicMapServiceLayer",
"esri/layers/FeatureLayer",
"esri/geometry/Extent",
"app/arcgis",
"dijit/form/FilteringSelect",
"dojo/store/Memory",
"dojo/_base/array",
"dijit/Dialog",
"esri/symbols/SimpleLineSymbol",
"esri/Color",
"esri/graphic"
], function(
declare,
lang,
on,
$d,
Config,
Dialog,
esriConfig,
Map,
ArcGISDynamicMapServiceLayer,
FeatureLayer,
Extent,
Arcgis,
FilteringSelect,
Memory,
array,
Dialog,
SimpleLineSymbol,
Color,
Graphic) {
var App = declare("App", null, {
CONFIG: Config,
janela: null,
comboBoxUbs: null,
map: null,
storeAbrangencia: null,
estiloLinha: null,
constructor: function() {
app = this;
},
inicializar: function() {
this.vincularEventosAosLinks();
//this.inicializarJanela();
},
vincularEventosAosLinks: function() {
var elementosLinks = $d("."+Config.CLASSE_PARA_PROCURA_DE_LINKS);
for (var i = 0; i < elementosLinks.length; i++) {
var e = elementosLinks[i];
this.vincularEventoAoElemento(e);
}
},
vincularEventoAoElemento: function(elemento) {
on(elemento, "click", lang.hitch(this, function(evt) {
evt.preventDefault();
var nomeAbrangencia = evt.target.id;
this.abrirJanela();
var deferred = this.obterListaDeUBS();
this.mostrarMapa();
this.map.on("load", lang.hitch(this, function(evt) {
deferred.then(lang.hitch(this, function(results) {
this.inicializarComboboxUbs(results);
var featureAbrangencia = this.obterFeatureAbrangencia(nomeAbrangencia);
if(featureAbrangencia){
this.comboBoxUbs.set("Item", featureAbrangencia);
var ponto = this.obterPontoCentralDaAbrangenciaSelecionada();
this.map.centerAndZoom(ponto, Config.ZOOM_MAPA);
}
}),
lang.hitch(this, function(err) {
this.janela.setContent(Config.MENSAGEM_ERRO_CARREGAMENTO);
}));
}));
}));
},
abrirJanela: function() {
this.inicializarJanela();
this.janela.show();
},
mostrarMapa: function() {
this.map = new Map("map", {
slider: true,
zoom: Config.ZOOM_MAPA,
logo:false
});
this.adicionaMapaBase(Config.URL_MAPABASE);
},
adicionaMapaBase: function(urlMapaBase) {
//Cria mapa base
var mapaBase = new ArcGISDynamicMapServiceLayer(urlMapaBase, {
id: 'mapa_base'
});
this.map.addLayer(mapaBase);
},
centralizaNaAbrangencia: function(abrangencia) {
var pontoCentralUbs = abrangencia.geometry.getCentroid();
this.map.centerAndZoom(pontoCentralUbs, Config.ZOOM_MAPA);
this.map.centerAt(pontoCentralUbs);
},
inicializarJanela: function() {
this.janela = new Dialog({
title: Config.TITULO,
content: '<input id="listaUbs"><div id="map" style="width:100%; height:95%;"></div>',
style: "width:90%; height:100%;",
onHide: lang.hitch(this, function() {
if(this.map)
this.map.destroy();
if(this.janela)
this.janela.destroy();
if(this.comboBoxUbs)
this.comboBoxUbs.destroy();
})
});
},
obterListaDeUBS: function() {
return Arcgis.queryTodasLinhasEColunasComGeometria(Config.URL_ABRANGENCIA);
},
inicializarComboboxUbs: function(results) {
var values = [];
var testVals = {};
array.forEach(results.features, function(feature) {
values.push({
id: feature.attributes.OBJECTID,
UBS: feature.attributes.UBS,
feature: feature
});
});
this.storeAbrangencia = new Memory({
data: values
});
this.comboBoxUbs = new FilteringSelect({
id: "comboBoxUbs",
store: this.storeAbrangencia,
searchAttr: "UBS",
style: "width:25%;position:relative; margin: 0 auto 10px auto;",
queryExpr: "*${0}*", //mágica para procurar substring
autoComplete: false,
onChange: lang.hitch(this, this.atualizarMapa)
}, Config.ID_LISTA_UBS);
this.comboBoxUbs.startup();
this.comboBoxUbs.focus();
},
obterFeatureAbrangencia: function(nomeAbrangencia) {
var featuresAbrangencia = this.storeAbrangencia.query({
UBS: nomeAbrangencia
});
if( featuresAbrangencia.length > 0 )
return featuresAbrangencia[0];
else return null;
},
atualizarMapa: function(){
var ponto = this.obterPontoCentralDaAbrangenciaSelecionada();
this.map.centerAt(ponto);
var geometria = this.obterGeometriaDoItemSelecionado();
this.map.on("update-end", lang.hitch(this, function(){
this.map.graphics.clear();
this.adicionaContornoNaArea(geometria);
}));
},
obterPontoCentralDaAbrangenciaSelecionada: function(){
var geometria = this.obterGeometriaDoItemSelecionado();
return geometria.getCentroid();
},
obterGeometriaDoItemSelecionado: function(){
var item = this.obterObjetoDoItemSelecionado(); //obtem o objeto do valor que está selecionado no combobox
return item.feature.geometry;
},
obterObjetoDoItemSelecionado:function(){
return this.comboBoxUbs.get("item");
},
adicionaContornoNaArea: function(geometria) {
var estilo = this.obterEstiloDeLinha();
var graphic = new Graphic(geometria, estilo);
this.map.graphics.add(graphic);
},
obterEstiloDeLinha: function(){
if( this.estiloLinha )
return this.estiloLinha;
this.estiloLinha = new SimpleLineSymbol(
SimpleLineSymbol.STYLE_SOLID,
new Color(Config.COR_SELECAO),
Config.ESPESSURA_BORDA_SELECAO
);
return this.estiloLinha;
}
});
return new App();
});