Hello,
My setup currently is:
- ArcGIS Enterprise server with the Maritime Chart Service enabled
- S-63 charts properly licenced and set up with a permit
- Qt QML project being developed on a machine co-located with the chart server
I can load the charts just fine using an ArcGISMapImageLayer pointing at the "http://..../MapServer/exts/MaritimeChartService/MapServer" url of my chart server.
My question is: how do i set the Dynamic Parameters of the S-63 charts; specifically the Colour Scheme. I see there is an ENCLayer with mariner options which i don't think I can use with S-63 charts as they must be hosted on a chart server. From what I can gather I need to pass in display_params somehow to the export requests being made to the server. I'm just not sure where i would add these parameters.
Current code below (practically sample code at this point):
ApplicationWindow <SPAN class="punctuation token">{</SPAN>
id<SPAN class="punctuation token">:</SPAN> appWindow
width<SPAN class="punctuation token">:</SPAN> <SPAN class="number token">800</SPAN>
height<SPAN class="punctuation token">:</SPAN> <SPAN class="number token">600</SPAN>
title<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Project"</SPAN>
MapView <SPAN class="punctuation token">{</SPAN>
anchors<SPAN class="punctuation token">.</SPAN>fill<SPAN class="punctuation token">:</SPAN> parent
focus<SPAN class="punctuation token">:</SPAN> <SPAN class="keyword token">true</SPAN>
Map <SPAN class="punctuation token">{</SPAN>
Basemap <SPAN class="punctuation token">{</SPAN>
ArcGISMapImageLayer <SPAN class="punctuation token">{</SPAN>
url<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"http://127.0.0.1:6080/arcgis/rest/services/TiledMap/MapServer/exts/MaritimeChartService/MapServer"</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="punctuation token">}</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>Cheers, Tiaki