Blame view

datalets/leafletjs-datalet/leafletjs-datalet.html 5.97 KB
a508f993   isisadmin   added datalet doc...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <!--

  The MIT License (MIT)

  

  Copyright (c) 2015 ROUTE-TO-PA CONSORTIUM

  

  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.

  -->

  

73bcce88   luigser   COMPONENTS
25
26
  <link rel="import" href="../base-datalet/base-datalet.html">

  

a508f993   isisadmin   added datalet doc...
27
28
29
30
31
32
33
34
35
36
37
38
  <!--

  

  `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=73e02092-85a1-434e-85fe-0c9a43aa9a52&amp;limit=10000"

                     query="$['result']['records'][*]['Lat']###$['result']['records'][*]['Lng']###$['result']['records'][*]['Link']">

  

  

  -->

  

73bcce88   luigser   COMPONENTS
39
40
  <dom-module name="leafletjs-datalet">

      <template>

1a83f5a1   Luigi Serra   map datalet css b...
41
          <link rel="stylesheet" href="leafletsjs/leaflet.css" />

73bcce88   luigser   COMPONENTS
42
43
44
45
46
47
48
49
50
          <style>

              #leafletjs { height: 600px; }

          </style>

  

          <div id="leafletjs"></div>

          <base-datalet data-url="{{dataUrl}}" query="{{query}}" fields-order="{{fieldsOrder}}"></base-datalet>

  

      </template>

  

73bcce88   luigser   COMPONENTS
51
52
53
54
      <script src="leafletsjs/leaflet.js"></script>

  

      <script>

  

73bcce88   luigser   COMPONENTS
55
56
          var leafletjsBehavior = {

  

a508f993   isisadmin   added datalet doc...
57
58
59
60
61
              /**

               * Extract all the data from the dataset according to the queries.

               *

               * @method selectData

               */

73bcce88   luigser   COMPONENTS
62
63
64
65
              selectData: function(){

  

                  var queries =  this._component.query.split("###");

  

a508f993   isisadmin   added datalet doc...
66
                  for (var i = 0; i < queries.length; i++) {

73bcce88   luigser   COMPONENTS
67
68
69
70
71
72
73
74
75
76
77
78
                          var propName = this.getPropertyName(queries[i]);

  

                          temp = jsonPath(this.properties.json_results.value, queries[i]);

                          for (j = 0; j < temp.length; j++) {

                              if (i == 0) this.properties.data.value[j] = {};

                              currObj = {};

                              currObj[propName] = temp[j];

                              jQuery.extend(this.properties.data.value[j], currObj);

                          }

                 }

              },

  

a508f993   isisadmin   added datalet doc...
79
80
81
82
83
84
              /**

               * 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

               */

73bcce88   luigser   COMPONENTS
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
              transformData: function(){

              	            	             

  				var coordinates = [];

  				var keys = Object.keys(this.properties.data.value[0]);

  				

                  for(var index in this.properties.data.value)

                  {

                      coordinates.push([parseFloat(this.properties.data.value[index][keys[0]]), parseFloat(this.properties.data.value[index][keys[1]])]);

                      var marker = L.marker([coordinates[index][0], coordinates[index][1]]).addTo(this._component.map);

                      var popup = L.popup().setContent('<image height="100" width="100" src="'+this.properties.data.value[index][keys[2]]+'" />');

                      marker.bindPopup(popup);

                  }

  

                  this._component.map.invalidateSize();

                  this._component.map.fitBounds(coordinates);            	

              	

              }

          };

  

  

          Polymer({

  

              is : 'leafletjs-datalet',

73bcce88   luigser   COMPONENTS
108
109
110
  

              properties : {

  

a508f993   isisadmin   added datalet doc...
111
112
113
114
115
                  /**

                   * Store a reference to the leafletjs map object created in 'ready' callback

                   * @attribute map

                   * @type Object

                   */

73bcce88   luigser   COMPONENTS
116
117
118
119
120
121
                  map :

                  {

                      type: Object,

                      value:null

                  },

  

a508f993   isisadmin   added datalet doc...
122
123
124
125
126
                  /**

                   * An Array with all the markers extracted from the dataset

                   * @attribute markers

                   * @type Array

                   */

73bcce88   luigser   COMPONENTS
127
128
129
130
131
132
133
                  markers :

                  {

                      type : Array,

                      value : []

                  }

              },

  

a508f993   isisadmin   added datalet doc...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
              /**

               * '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(){

  

  				this.map = L.map(this.$.leafletjs).setView([0, 0], 13);

  

                  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.map);

73bcce88   luigser   COMPONENTS
149
  

a508f993   isisadmin   added datalet doc...
150
151
152
153
154
                  L.Icon.Default.imagePath = 'http://services.routetopa.eu/DEEalerProvider/COMPONENTS/datalets/leafletjs-datalet/leafletsjs/images';

  

                  var leafletjsComponentBehavior =  $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonDataRequestBehavior, leafletjsBehavior);

                  leafletjsComponentBehavior.init(this);

              }

73bcce88   luigser   COMPONENTS
155
156
157
158
          });

      </script>

  </dom-module>