I'm a new user from Australia with very little coding experience, and I've been trying to get the NSW Topo and Imagery layers from SIX Maps (maps.six.nsw.gov.au) to work in MOBAC (version 2.3.3). I've spent a considerable amount of time trying to configure custom map sources based on the GetCapabilities documents I've found, but I'm still running into issues. I’ve based my xml on this forum post that I found but is now not working: https://bushwalk.com/forum/viewtopic.php?f=21&t=41543&mobile=on
Here's a summary of what I've been trying for NSW Topo:
I've tried both RESTful and KVP configurations based on the <resourceurl> template in the GetCapabilities.</resourceurl>
The current status is that I'm often getting "HTTP error: 404 (Not Found)" in the MOBAC log when trying to load tiles for NSW Topo, regardless of the configuration (REST or KVP, JPG or PNG).
Here's an example of my current RESTful configuration:
(nsw_topo_rest_png.xml):
XML
I've tried similar RESTful and KVP configurations, again with jpg and png as tileType and FORMAT.
I'm also consistently getting "HTTP error: 404 (Not Found)" for the Imagery layers.
It seems like I might be missing something fundamental in how MOBAC expects these WMTS services to be configured, or perhaps there's a subtle change on the SIX Maps server that I'm not accounting for.
Has anyone successfully configured these NSW layers in MOBAC recently? Any insights or example configurations would be greatly appreciated!
Thanks in advance for any help you can offer!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi everyone,
I'm a new user from Australia with very little coding experience, and I've been trying to get the NSW Topo and Imagery layers from SIX Maps (maps.six.nsw.gov.au) to work in MOBAC (version 2.3.3). I've spent a considerable amount of time trying to configure custom map sources based on the GetCapabilities documents I've found, but I'm still running into issues. I’ve based my xml on this forum post that I found but is now not working: https://bushwalk.com/forum/viewtopic.php?f=21&t=41543&mobile=on
Here's a summary of what I've been trying for NSW Topo:
I have the GetCapabilities URL for the NSW Topo Map service: http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/WMTS/1.0.0/WMTSCapabilities.xml
I've tried both RESTful and KVP configurations based on the <resourceurl> template in the GetCapabilities.</resourceurl>
The current status is that I'm often getting "HTTP error: 404 (Not Found)" in the MOBAC log when trying to load tiles for NSW Topo, regardless of the configuration (REST or KVP, JPG or PNG).
Here's an example of my current RESTful configuration:
(nsw_topo_rest_png.xml):
XML
<custommapsource>
<name>NSW_Topo_REST_PNG</name>
<minzoom>0</minzoom>
<maxzoom>18</maxzoom>
<tiletype>png</tiletype>
<tileupdate>None</tileupdate>
<url>http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/WMTS/tile/1.0.0/public_NSW_Topo_Map/default/GoogleMapsCompatible/{$z}/{$y}/{$x}</url>
<backgroundcolor>#000000</backgroundcolor>
</custommapsource>
And my current KVP configuration:
(nsw_topo_kvp_revised2.xml):
XML
<custommapsource>
<name>NSW_Topo_KVP_Revised2</name>
<minzoom>0</minzoom>
<maxzoom>18</maxzoom>
<tiletype>png</tiletype>
<tileupdate>None</tileupdate>
<url>http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/WMTS?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=public_NSW_Topo_Map&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX={$z}&TILEROW={$y}&TILECOL={$x}&FORMAT=image/png</url>
<backgroundcolor>#000000</backgroundcolor>
</custommapsource>
I'm also having similar issues with NSW Imagery:
I have the GetCapabilities URL for the NSW Imagery service: http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/WMTS/1.0.0/WMTSCapabilities.xml
I've tried similar RESTful and KVP configurations, again with jpg and png as tileType and FORMAT.
I'm also consistently getting "HTTP error: 404 (Not Found)" for the Imagery layers.
It seems like I might be missing something fundamental in how MOBAC expects these WMTS services to be configured, or perhaps there's a subtle change on the SIX Maps server that I'm not accounting for.
Has anyone successfully configured these NSW layers in MOBAC recently? Any insights or example configurations would be greatly appreciated!
Thanks in advance for any help you can offer!
Hello,
Please find XML and BSH files here
http://randochartreuse.free.fr/mobac2.x/mapsources/Australie%20%28Australia%29/
Regards
Nicolas
Last edit: Nicolas PAOUR 2025-04-20
That works great, thank you very much Nicolas!