config.php
7.14 KB
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
<?php
//utilizado para facilitar a carga de javascript das interfaces do i3geo
//tipo pode ser OL|OSM|GM (openlayers, OSM, google maps)
$tipo = filter_var($_GET["tipo"], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
//e necessario definir isso pq os parametros de config ficam mais adiante no script em linha da interface
if($tipo == "OL"){
echo 'i3GEO.Interface.ATUAL = "openlayers";';
echo 'i3GEO.Interface.openlayers.googleLike = false;';
}
if($tipo == "OSM"){
echo 'i3GEO.Interface.ATUAL = "openlayers";';
echo 'i3GEO.Interface.openlayers.googleLike = true;';
}
if($tipo == "GM"){
echo 'i3GEO.Interface.ATUAL = "googlemaps";';
}
//para comodidade de nao ter de calcular isso
$u = basename(dirname(dirname(__FILE__)));
echo 'i3GeoUrl = i3GEO.util.protocolo() + "://" + window.location.host + "/'.$u.'";';
?>
i3GEO.janela.ativaAlerta();
(function() {
if(typeof ol != "undefined" && i3GEO.Interface.openlayers.googleLike === false){
var eng = new ol.layer.Tile(
{
title : "ESRI National Geographic",
visible : true,
isBaseLayer : true,
name : "eng",
source : new ol.source.TileArcGISRest(
{
url : "http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer",
attributions : [ new ol.Attribution(
{
html : 'Tiles © <a href="http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer">ArcGIS</a>'
}) ]
})
});
var oce = new ol.layer.Tile(
{
title : "ESRI Ocean Basemap",
visible : false,
isBaseLayer : true,
name : "oce",
source : new ol.source.TileArcGISRest(
{
url : "http://server.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer",
attributions : [ new ol.Attribution(
{
html : 'Tiles © <a href="http://server.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer">ArcGIS</a>'
}) ]
})
});
var ims = new ol.layer.Tile(
{
title : "ESRI Imagery World 2D",
visible : false,
isBaseLayer : true,
name : "ims",
source : new ol.source.TileArcGISRest(
{
url : "http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer",
attributions : [ new ol.Attribution(
{
html : 'Tiles © <a href="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer">ArcGIS</a>'
}) ]
})
});
var wsm = new ol.layer.Tile(
{
title : "ESRI World Street Map",
visible : false,
isBaseLayer : true,
name : "wsm",
source : new ol.source.TileArcGISRest(
{
url : "http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer",
attributions : [ new ol.Attribution(
{
html : 'Tiles © <a href="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer">ArcGIS</a>'
}) ]
})
});
var bra = new ol.layer.Tile(
{
title : "Base carto MMA",
visible : false,
isBaseLayer : true,
name : "bra",
source : new ol.source.TileWMS(
{
url : "http://mapas.mma.gov.br/cgi-bin/mapserv?map=/opt/www/html/webservices/baseraster.map&",
params : {
'layers' : "baseraster",
'srs' : "EPSG:4326",
'format' : "image/png"
}
})
});
var tms = new ol.layer.Tile(
{
title : "OSGEO",
visible : false,
isBaseLayer : true,
name : "tms",
source : new ol.source.TileWMS(
{
url : "http://tilecache.osgeo.org/wms-c/Basic.py/",
params : {
'layers' : "basic",
'type' : "png",
'srs' : "EPSG:4326",
'format' : "image/png",
'VERSION' : '1.1.1'
},
attributions : [ new ol.Attribution(
{
html : '© <a href="http://www.tilecache.org/">2006-2010, TileCache Contributors</a>'
}) ]
})
});
/*
var esus = new ol.layer.Tile(
{
title : "ESUS Gestor",
visible : true,
isBaseLayer : true,
name : "osm",
source : new ol.source.TileWMS(
{
url : "http://192.168.1.112/mapcache/wms",
params : {
'layers' : "osm",
'srs' : "EPSG:4326",
'format' : "image/png"
},
attributions : [ new ol.Attribution(
{
html : '© </a>'
}) ]
})
});
*/
i3GEO.Interface.openlayers.LAYERSADICIONAIS = [ eng, oce, ims, wsm,
bra, tms ];
}
if(typeof ol != "undefined" && i3GEO.Interface.openlayers.googleLike === true){
var attribOSMData = 'Map Data: © <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors';
var attribMapQuestAerial = 'Map Data: © Portions Courtesy NASA/JPL-Caltech and U.S. Depart. of Agriculture, Farm Service Agency, Tiles Courtesy of <a href="http://www.mapquest.com/" target="_blank">MapQuest</a> <img src="http://developer.mapquest.com/content/osm/mq_logo.png">';
var attribStamen = 'Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under CC BY SA';
var osm = new ol.layer.Tile({
title : "OSM",
visible : true,
isBaseLayer : true,
name : "osm",
source: new ol.source.OSM({
attributions : [new ol.Attribution({html: attribOSMData})],
crossOrigin : "anonymous",
url : "http://tile.openstreetmap.org/{z}/{x}/{y}.png"
})
});
var aquarela = new ol.layer.Tile({
title : "Aquarela",
visible : false,
isBaseLayer : true,
name : "aquarela",
source: new ol.source.OSM({
attributions : [new ol.Attribution({html: attribStamen})],
crossOrigin : "anonymous",
url : "http://tile.stamen.com/watercolor/{z}/{x}/{y}.jpg"
})
});
var toner = new ol.layer.Tile({
title : "Toner",
visible : false,
isBaseLayer : true,
name : "toner",
source: new ol.source.OSM({
attributions : [new ol.Attribution({html: attribStamen})],
crossOrigin : "anonymous",
url : "http://tile.stamen.com/toner/{z}/{x}/{y}.png"
})
});
var tonerlite = new ol.layer.Tile({
title : "Toner Lite",
visible : false,
isBaseLayer : true,
name : "tonerlite",
source: new ol.source.OSM({
attributions : [new ol.Attribution({html: attribStamen})],
crossOrigin : "anonymous",
url : "http://tile.stamen.com/toner-lite/{z}/{x}/{y}.png"
})
});
var layMapQuestAerial = new ol.layer.Tile({
title : "MapQuest Open Aerial",
visible : false,
isBaseLayer : true,
name : "layMapQuestAerial",
source: new ol.source.OSM({
attributions : [new ol.Attribution({html: attribMapQuestAerial})],
crossOrigin : "anonymous",
url : "http://oatile4.mqcdn.com/tiles/1.0.0/sat/{z}/{x}/{y}.jpg"
})
});
i3GEO.Interface.openlayers.LAYERSADICIONAIS = [ osm, aquarela, toner, tonerlite, layMapQuestAerial ];
}
})();