equal
deleted
inserted
replaced
198 if (contentdata && contentdata.length) { |
198 if (contentdata && contentdata.length) { |
199 var _htmlCl = '<ul id="contentlist">' |
199 var _htmlCl = '<ul id="contentlist">' |
200 + contentdata.map(function(_d) { |
200 + contentdata.map(function(_d) { |
201 var _html = '<li class="content-item">' |
201 var _html = '<li class="content-item">' |
202 + ( _d.latitude != null && _d.longitude != null ? |
202 + ( _d.latitude != null && _d.longitude != null ? |
203 '<img class="maplet" src="http://maps.googleapis.com/maps/api/staticmap?center=' |
203 '<img class="maplet" src="http://maps.googleapis.com/maps/api/staticmap?center=47,1.5&zoom=4&size=160x160&maptype=roadmap&markers=color:red%7C' |
204 + _d.latitude |
|
205 + ',' |
|
206 + _d.longitude |
|
207 + '&zoom=8&size=128x200&maptype=terrain&markers=color:red%7C' |
|
208 + _d.latitude |
204 + _d.latitude |
209 + ',' |
205 + ',' |
210 + _d.longitude |
206 + _d.longitude |
211 + '&sensor=false" />' |
207 + '&sensor=false" />' |
212 : '') |
208 : '') |