899e9758
Renato De Donato
geojson <3
|
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
|
<!--
@license
The MIT License (MIT)
Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!--
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
*
-->
<link rel="import" href="../base-ajax-json-alasql-datalet/base-ajax-json-alasql-datalet.html">
<!--
`leafletjs-datalet` is a map datalet based on open source project leafletjs <http://leafletjs.com/>
Example:
<leafletjs-datalet
data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
fields='["field1","field2"]'>
</leafletjs-datalet>
@element leafletjs-datalet
@status v0.1
@demo demo/index.html
@group datalets
-->
<dom-module name="leafletjs-geojson-datalet">
<template>
<link rel="stylesheet" href="leafletsjs/leaflet.css" />
<style>
#leafletjs {height: 600px;}
</style>
<div id="leafletjs"></div>
<base-ajax-json-alasql-datalet data-url="{{dataUrl}}" fields="{{fields}}" data="{{data}}" title="{{title}}" description="{{description}}" export_menu="{{export_menu}}"></base-ajax-json-alasql-datalet>
</template>
<script src="leafletsjs/leaflet.js"></script>
<script>
|
0f7c7050
Andrea Petta
plugin update
|
67
|
var leafletjsgeojsonBehavior = {
|
899e9758
Renato De Donato
geojson <3
|
68
69
70
71
72
73
74
|
/**
* Read markers coordinates from the data object and add the marker to the map.
* Call a method for the map redraw and set the viewport in order to fit all the markers in the viewport..
*
* @method transformData
*/
|
2994d9bb
Andrea Petta
plugin update
|
75
|
presentData: function() {
|
899e9758
Renato De Donato
geojson <3
|
76
77
|
var t = this;
|
2994d9bb
Andrea Petta
plugin update
|
78
79
80
81
|
try {
this._component.map = L.map(this._component.$.leafletjs).setView([0, 0], 13, {reset: true});
} catch (e) {
}
|
899e9758
Renato De Donato
geojson <3
|
82
83
84
85
86
87
88
89
90
91
|
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'
}).addTo(this._component.map);
L.Icon.Default.imagePath = 'http://services.routetopa.eu/DEEalerProvider/COMPONENTS/datalets/leafletjs-datalet/leafletsjs/images';
|
ddeadce5
Andrea Petta
plugin update
|
92
93
94
|
//var coordinates = [];
//var coordinates_index = 0;
var geo_layer = L.geoJson();
|
88657b89
Andrea Petta
plugin update
|
95
|
var geo;
|
2994d9bb
Andrea Petta
plugin update
|
96
97
98
|
for (var i = 0; i < t.data[0].data.length; i++)
{
|
ddeadce5
Andrea Petta
plugin update
|
99
|
if(Array.isArray(t.data[0].data[i]))
|
88657b89
Andrea Petta
plugin update
|
100
|
{
|
ddeadce5
Andrea Petta
plugin update
|
101
102
103
104
|
if(!isNaN(t.data[0].data[i][0]) && !isNaN(t.data[0].data[i][1])) {
//coordinates.push([parseFloat(t.data[0].data[i][0]), parseFloat(t.data[0].data[i][1])]);
geo_layer.addData({"type": "Feature","geometry": {"type": "Point", "coordinates": [parseFloat(t.data[0].data[i][0]), parseFloat(t.data[0].data[i][1])]}});
}else
|
88657b89
Andrea Petta
plugin update
|
105
106
|
continue;
}
|
ddeadce5
Andrea Petta
plugin update
|
107
108
109
110
111
|
else if(typeof t.data[0].data[i] == 'object')
{
geo = L.geoJson(t.data[0].data[i]).addTo(t._component.map);
geo_layer.addData(t.data[0].data[i]);
}
|
88657b89
Andrea Petta
plugin update
|
112
113
114
115
|
else if(typeof t.data[0].data[i] == 'string' && t.data[0].data[i].startsWith('{"type":"'))
{
try
{
|
1676e292
Andrea Petta
plugin update
|
116
|
t.data[0].data[i] = JSON.parse(t.data[0].data[i]);
|
88657b89
Andrea Petta
plugin update
|
117
|
geo = L.geoJson(t.data[0].data[i]).addTo(t._component.map);
|
ddeadce5
Andrea Petta
plugin update
|
118
|
geo_layer.addData(t.data[0].data[i]);
|
88657b89
Andrea Petta
plugin update
|
119
120
121
122
123
124
|
}catch(e) {continue;}
}
else if(typeof t.data[0].data[i] == 'string' && t.data[0].data[i].indexOf(","))
{
var coords = t.data[0].data[i].split(",");
if(!isNaN(coords[0]) && !isNaN(coords[1])) {
|
ddeadce5
Andrea Petta
plugin update
|
125
126
127
128
|
//coordinates.push([parseFloat(coords[0]), parseFloat(coords[1])]);
geo_layer.addData({"type": "Feature","geometry": {"type": "Point", "coordinates": [parseFloat(coords[0]), parseFloat(coords[1])]}});
geo = L.marker([parseFloat(coords[0]), parseFloat(coords[1])]).addTo(t._component.map);
//coordinates_index++;
|
88657b89
Andrea Petta
plugin update
|
129
130
131
|
}else
continue;
}
|
2994d9bb
Andrea Petta
plugin update
|
132
133
134
135
136
137
|
if(t.data.length > 1)
{
var popupText = "";
for(var j=1; j<t.data.length; j++)
{
|
5fd0e051
Andrea Petta
plugin update
|
138
|
if(typeof t.data[j] != 'undefined' && t.data[j].data[i] && typeof t.data[j].data[i] != 'undefined')
|
2994d9bb
Andrea Petta
plugin update
|
139
140
141
142
143
144
145
146
147
|
{
if (t.data[j].data[i].toString().match(new RegExp("^(http[s]?:\\/\\/(www\\.)?|ftp:\\/\\/(www\\.)?|www\\.){1}([0-9A-Za-z-\\.@:%_\+~#=]+)+((\\.[a-zA-Z]{2,3})+)(/(.)*)?(\\?(.)*)?")))
popupText += '<image height="100" width="100" src="' + t.data[j].data[i] + '" /><br/>';
else
popupText += '<span>' + t.data[j].name + ' : ' + t.data[j].data[i] + '</span><br/>'
}
}
var popup = L.popup().setContent(popupText);
|
88657b89
Andrea Petta
plugin update
|
148
|
geo.bindPopup(popup);
|
2994d9bb
Andrea Petta
plugin update
|
149
150
|
}
}
|
899e9758
Renato De Donato
geojson <3
|
151
152
153
|
t._component.map._onResize();
t._component.map.invalidateSize(false);
|
ddeadce5
Andrea Petta
plugin update
|
154
|
t._component.map.fitBounds(geo_layer);
|
899e9758
Renato De Donato
geojson <3
|
155
156
157
158
159
160
161
162
163
164
|
}
};
Polymer({
is : 'leafletjs-geojson-datalet',
properties : {
|
899e9758
Renato De Donato
geojson <3
|
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
|
/**
* Store a reference to the leafletjs map object created in 'ready' callback
* @attribute map
* @type Object
*/
map :
{
type: Object,
value:null
},
/**
* An Array with all the markers extracted from the dataset
* @attribute markers
* @type Array
*/
markers :
{
type : Array,
value : []
},
/**
* It's the component behavior
*
* @attribute behavior
* @type Object
* @default {}
*/
behavior : {
type : Object,
value : {}
},
/**
* Control the export menu
* xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
*
* @attribute export_menu
* @type Number
* @default 15
*/
export_menu : {
type : Number,
value : 9 // xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
|
1241a415
Andrea Petta
plugin update
|
207
208
209
210
211
|
},
data : {
type : Array,
value : undefined
|
899e9758
Renato De Donato
geojson <3
|
212
213
214
215
216
217
218
219
220
221
222
|
}
},
/**
* 'ready' callback create the map object, set the tileLayer to openstreetmap and the default icon image path.
* Moreover extend the leafletjsComponentBehavior with BaseDataletBehavior, WorkcycleBehavior and leafletjsBehavior
* and run the Datalet workcycle.
*
* @method ready
*/
ready: function(){
|
0f7c7050
Andrea Petta
plugin update
|
223
|
this.behavior = $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonAlasqlBehavior, leafletjsgeojsonBehavior);
|
899e9758
Renato De Donato
geojson <3
|
224
225
226
227
228
229
|
this.async(function(){this.behavior.init(this)},100);
}
});
</script>
</dom-module>
|