The support forum is temporarily read-only. For urgent requests, please email contact[at]psyberia.net

[closed] Using Custom online maps (AQX file)

Something wrong? Report it here
Post Reply
soravis
Posts: 2
Joined: Sat Feb 11, 2012 2:39 pm

[closed] Using Custom online maps (AQX file)

Post by soravis »

Hi!

I'm trying to import a custom online map: http://turaterkep.hostcity.hu
The tiles come from http://a.map.turistautak.hu/tiles/turis ... }/{$y}.png.

I created the following aqx file:

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<aqx version="1">
	
	<category name="Turistautak.hu">
	
	<source id="TURISTAUTAK">
	
		<name>Turistautak</name>
		<data-source>http://turistautak.hu</data-source>
		<copyright>turistautak.hu</copyright>
	
		<level type="osm">
	
		<projection>
			<projection-name>mercator</projection-name>
			<projection-geoid>sphere</projection-geoid>
		</projection>
	
		<tiles>
			<tiles-size-x>256</tiles-size-x>
			<tiles-size-y>256</tiles-size-y>
			<tiles-format>png</tiles-format>
		</tiles>
	
		<servers>
			<max-threads>1</max-threads>
			<server>http://a.map.turistautak.hu/tiles/turistautak/{$z}/{$x}/{$y}.png</server>
			<server>http://b.map.turistautak.hu/tiles/turistautak/{$z}/{$x}/{$y}.png</server>
			<server>http://c.map.turistautak.hu/tiles/turistautak/{$z}/{$x}/{$y}.png</server>
			<server>http://d.map.turistautak.hu/tiles/turistautak/{$z}/{$x}/{$y}.png</server>
		</servers>
	
		<zoom>
			<zoom-available>8,9,10,11,12,13,14,15,16,17,18</zoom-available>
			<zoom-default>8,9,11,13,14,15,16,17,18</zoom-default>
		</zoom>
	
		</level>
	
	</source>
	
	</category>
	
</aqx>
I copy it to the alpinequest/maps/ folder. But when I tap on it in AlpineQuest from the Memory card maps menu, only an empty list is diplayed with only the default world map, as if it was a folder.
I'm using AlpineQuest Lite 1.2.12
Psyberia-Support
Site Admin
Posts: 6407
Joined: Wed Apr 14, 2010 9:41 pm

Re: Using Custom online maps (AQX file)

Post by Psyberia-Support »

Hi,
I have changed the zoom tag recently and didn't update the help page, I'm so sorry about that... I'll do it tonight.
Replace

Code: Select all

<zoom-available>8,9,10,11,12,13,14,15,16,17,18</zoom-available>
<zoom-default>8,9,11,13,14,15,16,17,18</zoom-default>
by

Code: Select all

<zoom-values>8,9,11,13,14,15,16,17,18</zoom-values>
and it will work.
I'm really sorry for that.
Don't hesitate to ask me here if you have any trouble or question,
Best regards
Do you like AlpineQuest ? Leave a small comment on Google Play !
soravis
Posts: 2
Joined: Sat Feb 11, 2012 2:39 pm

Re: Using Custom online maps (AQX file)

Post by soravis »

Works perfectly! Thanks!
Soravis
Psyberia-Support
Site Admin
Posts: 6407
Joined: Wed Apr 14, 2010 9:41 pm

Re: Using Custom online maps (AQX file)

Post by Psyberia-Support »

Ok that good.

I have updated the help and examples page on custom map configuration.
Best regards
Do you like AlpineQuest ? Leave a small comment on Google Play !
Post Reply