Hi people,<br><br>I have a layer with *INLINE FEATURES* and was wondering what attributes<br>I should add to make it queryable. <br><br>I&#39;m getting the error: msINLINELayerGetShape(): No inline feature<br>How do I create or simulate an attribute within this inline layer?
<br><br>Thanks in advance,<br><br>A<br><br><br>This is my code:<br><br>====================================<br><br>&nbsp;&nbsp; LAYER<br>&nbsp;&nbsp;&nbsp; METADATA<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; NAME &quot;&#39;.$name.&#39;&quot;<br>&nbsp;&nbsp;&nbsp; PROJECTION<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #&quot;EPSG:4326&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;proj=latlong&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;ellps=WGS84&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;datum=WGS84&quot;<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; TEMPLATE &quot;query.html&quot; <br>&nbsp;&nbsp;&nbsp; TOLERANCE 3 <br>&nbsp;&nbsp;&nbsp; TOLERANCEUNITS PIXELS<br>&nbsp;&nbsp;&nbsp; #SIZEUNITS PIXELS
<br>&nbsp;&nbsp;&nbsp; STATUS DEFAULT<br>&nbsp;&nbsp;&nbsp; TYPE POINT<br>&nbsp;&nbsp;&nbsp; #UNITS METERS<br>&nbsp;&nbsp;&nbsp; CLASSITEM &quot;COORDINATE&quot;<br>&nbsp;&nbsp;&nbsp; CLASS<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NAME &quot;&#39;.$name.&#39;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #ANGLE 360<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OUTLINECOLOR 0 0 0
<br>&nbsp;&nbsp;&nbsp; &nbsp;SYMBOL &quot;&#39;.$symbol.&#39;&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;COLOR &#39;.implode(&#39; &#39;,$col).&#39;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SIZE &#39;.$size.&#39;<br>&nbsp;&nbsp;&nbsp; &nbsp;END<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #LABEL<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; #&nbsp; COLOR 0 0 0<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #FONT monospace
<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #TYPE TRUETYPE<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #POSITION CC<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #PARTIALS TRUE<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #SIZE 7<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #BUFFER 1<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #OUTLINECOLOR 255 255 255<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #END<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; FEATURE<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; POINTS<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;.$features.&#39; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TEXT &quot;Coordinates&quot;<br>&nbsp;&nbsp;&nbsp; END<br><br>==================================<br>