List with images

In this example, the product group of ski tour maps to the scale of 1:50000 is integrated. The formatting is carried out using CSS.

The format template used
var formatTemplate =
'<div style="width: 960px; font-size: 0.95em; margin-bottom: 20px;">' +
   '<div class="imgspace_med"><img src="[product.imageUrlMedium]"/></div>' +
   '<div class="info_med">' +
      '<span class="title">[product.mapNumber] [product.titleDe]</span><br/>' +
      '([product.descriptionDe])<br/><br/>' +
      'Ausgabe: [product.releaseDate]<br/>ISBN-Nummer: [product.isbnNumber]<br/>' +
      'Preis: [product.price]<br/><br/>' +
   '</div>' +
'</div>' +
'<div class="clearthefloats"></div>';
   

Calling up the JavaScript function
window.onload=getProducts(1.0, formatTemplate, ['24'],null);   	
   

It looks like this