hi all,<br><br>I have a map with lots of layers. Each layer has its own style. The map application gets each layer from a web-service that some else has developed and can not be modified (I guess).<br> <br>I thouht I could put any kind of data in a json file, so I tried this:<br>
<br>{<br>&quot;type&quot;: &quot;FeatureCollection&quot;,<br>&quot;name&quot;: &quot;Mapa de la Internacionalitat&quot;,<br>&quot;minScale&quot;:&quot;whatever&quot;,<br>&quot;maxScale&quot;:&quot;whatever&quot;,<br><br>//and then features and its properties?<br>
&quot;features&quot;: [<br>...<br>]<br>}<br><br>Now I have realized that atributes &quot;name&quot;, &quot;minScale&quot; and &quot;maxScale&quot; are not available from the layer object. I can only get the features properties.<br>
<br>Is it possible to read first the data of the layer, then create the layer and finally add the features?<br>How could / should I do that?<br><br>Thanks in advance.<br>