Northern Ireland Outdoors Forum - Hiking, camping and more

General => General Chat => Topic started by: Ed on April 09, 2012

Title: Talkytoaster in Basecamp - help!
Post by: Ed on April 09, 2012
Anyone know about Talkytoaster and working with basecamp?
I downloaded the PC version of the routeable maps
Installed MapTK to C:\GARMIN\MapTk
Extracted maps into C:\Garmin\British-Isles+Contours
Ran batch file
Launched BaseCamp - ensured "Basic map" is unchecked.

Using Win 7 x64 - also tried on XP

Got this:

(http://dl.dropbox.com/u/14035139/basecampissue.png)
Title: Re: Talkytoaster in Basecamp - help!
Post by: whoisaaron on April 09, 2012
Is this app device specific? I use a Garmin forerunner 310.
Title: Re: Talkytoaster in Basecamp - help!
Post by: Ed on April 09, 2012
Is this app device specific? I use a Garmin forerunner 310.

Works with all devices AFAIK
Title: Re: Talkytoaster in Basecamp - help!
Post by: Pudd on April 09, 2012
That's normal . . . keep zooming in. 

Also, you'll find it easier to use MapSource.  In my opinion it's far easier to use, navigate, and send items to a device.  You will however have to use the track function instead of routing, as routing shows up as big pins on the device (like google maps when you drop a pin on a certain location). 
Title: Re: Talkytoaster in Basecamp - help!
Post by: LandyLiam on April 09, 2012
just had a wee play with mapsource myself, any idea how i get it to use my talkytoaster map?

(when i try to receive a map from device it says "the selected device has no maps on it")
Title: Re: Talkytoaster in Basecamp - help!
Post by: Pudd on April 09, 2012
I'll make a quick guide:

Downloads:


This guide has been totally written from memory, so please forgive any mistakes.  Failing that, if you guys wish (or to anyone having difficulty) I'll remote desktop your computer and install it for you.
Title: Re: Talkytoaster in Basecamp - help!
Post by: LandyLiam on April 09, 2012
excellent, only another 2 hrs to wait for the complete download  :o  so will give it a try tomorrow  :)
Title: Re: Talkytoaster in Basecamp - help!
Post by: Ed on April 10, 2012
I resolved the issue. The installation script is written somewhat badly lol.
Rather than assuming the current directory is where the maps are, it uses %~DP0 - i.e the C:\ Drive - or more accurately, the first fixed drive on the system:


Code: [Select]
reg ADD %KEY%\Families\FAMILY_1232 /v ID /t REG_BINARY /d D004 /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Loc /t REG_SZ /d "%~dp0\" /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Bmap /t REG_SZ /d "%~dp0mapset.img" /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Tdb /t REG_SZ /d "%~dp0mapset.tdb" /f

Changed to

Code: [Select]
reg ADD %KEY%\Families\FAMILY_1232 /v ID /t REG_BINARY /d D004 /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Loc /t REG_SZ /d "C:\GARMIN\British-Isles+Contours" /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Bmap /t REG_SZ /d "C:\GARMIN\British-Isles+Contours\mapset.img" /f
reg ADD %KEY%\Families\FAMILY_1232\1232 /v Tdb /t REG_SZ /d "C:\GARMIN\British-Isles+Contours\mapset.tdb" /f


In short, you need to ensure the path matches the location of the maps on your system, unless youre dumping everything on C:\