Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using mkgmap -3657 and motorway_junction, ref=(exit#)

2016-01-20 Thread Gerd Petermann
greg crago wrote
> Yes Gerd,
> I have the code in my lines file that you mentioned.
> 
> When you test this. Did you download an .img file to a GPS, or is there an
> 'on-line GPS simulator?'

I used the Garmin Windows program MapSource. 

I think I found the reason for the problem, here is what happens:
The options process-exits and process-destination work as documented, they 
create tags with mkgmap:exit_hint=true and mkgmap:dest_hint=true for you
case, so this rule 
is used:
(highway=motorway_link | highway=trunk_link | highway=primary_link) &
mkgmap:exit_hint=true & mkgmap:dest_hint=true
  { name '${destination:ref|subst: =>} ${destination|subst:;=> |subst:/=> }'
| 
 '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' | 
 '${destination|subst:;=> |subst:/=> }' |
 'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' | 
 'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' | 
 'Exit ${mkgmap:exit_hint_exit_to}' |
 'Exit ${mkgmap:exit_hint_name}' |
 'Exit ${mkgmap:exit_hint_ref}'
   }
Now, this rule lists a set of alternatives to create the name for the way.
The first alternative that
returns a string is used. In your case that is this one :
 '${destination|subst:;=> |subst:/=> }' 
The following alternatives are ignored, therefore the (wanted ) text "Exit
28" doesn't appear.

Attached is a patch that can solve this issue, I hope someone finds a better
solution.
My approach: Build the hint for the destination, build the hint for the
exit, finally combine them.
I don't know if that is too simple.
I've also attached the complete modified lines file for the default style.

Gerd

hints_v1.patch   
lines.lines   



--
View this message in context: 
http://gis.19327.n5.nabble.com/Trying-to-get-EXIT-info-on-my-MONTANA-600-using-mkgmap-3657-and-motorway-junction-ref-exit-tp5865167p5865310.html
Sent from the Mkgmap Development mailing list archive at Nabble.com.
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev


Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using mkgmap -3657 and motorway_junction, ref=(exit#)

2016-01-20 Thread Steve Sgalowski
so far it is being compiled on my custom map with this string , am now
trying process destination in the same string



start /low /b /wait java -enableassertions -Xmx2100m -jar ..\bin\mkgmap.jar
 --link-pois-to-ways  --polygon-size-limits="23:15, 22:14,
21:13,20:12,19:11 18:10, 17:9, 16:8, 15:7, 14:6, 13:5, 12:4 ,11:3  10:2,
9:1, 8:0 "   --process-exits  --process-destination --merge-lines
 --style=default --pois-to-areas-placement=tagelist  --tdbfile
--transparent --make-poi-index --reduce-point-density=2.6
--reduce-point-density-polygon=4   --index
--levels=0:24,1:23,2:22,3:21,4:20,5:19,6:18,7:16  --verbose --route
--country-name="%country%" --family-id=%FID% --mapname=66%FID%001
--overview-mapname=66%FID%000 --series-name="OSM-%country%"
--family-name="OpenStreetMap: %country%" --style-file=..\bin\styles\
--style=%style% --description="%country%" -c ..\bin\template_basic.args -c
template.args %TypFileToAdd%


Stephen

On Thu, Jan 21, 2016 at 7:42 AM, greg crago  wrote:

> Yes Gerd,
> I have the code in my lines file that you mentioned.
>
> When you test this. Did you download an .img file to a GPS, or is there an
> 'on-line GPS simulator?'
>
> Greg
>
> On Wed, Jan 20, 2016 at 3:09 AM, Steve Sgalowski <
> steve.sgalow...@gmail.com> wrote:
>
>> I will try this with the latest mkgmap file with my montana 600 series
>> garmin hand held unit
>>
>> Stephen
>>
>>
>> On Wed, Jan 20, 2016 at 5:42 PM, Gerd Petermann <
>> gpetermann_muenc...@hotmail.com> wrote:
>>
>>> Hi Greg,
>>>
>>>
>>> I just tried your example with the default style.
>>>
>>> I see a hint containing the exit number (28) when I only use
>>> --process-exits (without --process-destination)
>>>
>>> With --process-destination I see the hint "Exit right onto ramp onto
>>> Plymouth Livonia"
>>>
>>> I am not sure if it is intended that the --process-destination "removes"
>>> the exit hint,
>>>
>>> this looks like an error to me. I'll have to dig into the code and the
>>> archives to understand what it should do.
>>>
>>> In the meantime you may check your style: Does your lines file contain
>>> rules like these?
>>>
>>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>>> mkgmap:exit_hint=true & mkgmap:dest_hint=true
>>>   { name '${destination:ref|subst: =>} ${destination|subst:;=>
>>> |subst:/=> }' |
>>>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>>>  '${destination|subst:;=> |subst:/=> }' |
>>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>>>  'Exit ${mkgmap:exit_hint_exit_to}' |
>>>  'Exit ${mkgmap:exit_hint_name}' |
>>>  'Exit ${mkgmap:exit_hint_ref}'
>>>}
>>>
>>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>>> mkgmap:exit_hint!=* & mkgmap:dest_hint=true
>>>   { name '${destination:ref|subst: =>} ${destination|subst:;=>
>>> |subst:/=> }' |
>>>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>>>  '${destination|subst:;=> |subst:/=> }'
>>>}
>>>
>>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>>> mkgmap:exit_hint=true & mkgmap:dest_hint!=*
>>>   { name 'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>>>  'Exit ${mkgmap:exit_hint_exit_to}' |
>>>  'Exit ${mkgmap:exit_hint_name}' |
>>>  'Exit ${mkgmap:exit_hint_ref}'
>>>}
>>>
>>>
>>>
>>> Gerd
>>>
>>> --
>>> *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
>>> mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
>>> gregcr...@gmail.com>
>>> *Gesendet:* Mittwoch, 20. Januar 2016 00:28
>>> *An:* Development list for mkgmap
>>> *Betreff:* Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600
>>> using mkgmap -3657 and motorway_junction, ref=(exit#)
>>>
>>> Yes Gerd,
>>>
>>> I use both of those options in my mkgmap command. Is there any other way
>>> to get the EXIT number displayed on my GPS during active routing for the
>>> 'next turn'?
>>>
>>> Greg
>>>
>>> On Tue, Jan 19, 2016 at 1:52 PM, Gerd Petermann <
>>> gpetermann_muenc...@hotmail.com> wrote:
>>>
 Hi Greg,


 I did not yet try your example, but I am sure that neither

 the java code nor the default style handles the tag destination:street.

 I think this can be changed, not sure whether in the style or in the
 java code.

 Besides that: do you use the option --process-destinations and
 --process-exits ?


 Gerd


 --
 *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
 mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
 gregcr...@gmail.com>
 *Gesendet:* Dienstag, 19. Januar 2016 19:34
 *An:* mkgmap-dev@lists.mkgmap.org.uk
 *Betreff:* [mkgmap-dev] Trying to get EXIT info on my MONTANA 600

Re: [mkgmap-dev] Any way to get BRIDGES=YES to be drawn on TOP of all other ways?

2016-01-20 Thread Mike Baggaley
Hi Greg, the order of drawing lines cannot be set as far as I know – the order 
of creation in the file has no effect. For bridges and tunnels I use two lines 
with a transparent gap between them, and draw both the road and the bridge. As 
the centre is transparent, it does matter whether the bridge or road gets drawn 
first.

 

bridge=* & (highway=motorway | highway=motorway_link | highway=trunk | 
highway=trunk_link) [0x11002 resolution 22 continue]

bridge=* & (highway=path | highway=footway | highway=steps | highway=cycleway | 
highway=bridleway | highway=byway | highway=track)  [0x11000 resolution 22 
continue]

bridge=* & highway=* & (highway!=path & highway!=footway & highway!=steps & 
highway!=cycleway & highway!=bridleway & highway!=byway & highway!=track & 
highway!=motorway & highway!=motorway_link & highway!=trunk & 
highway!=trunk_link)  [0x11001 resolution 22 continue]

bridge=* & (highway!=* & railway=* | (waterway=* & (width!=* | width!=0))) 
[0x11001 resolution 22 continue]

 

[_line]

Type=0x11000

String1=0x0,Bridge

FontStyle=NoLabel

UseOrientation=N

Xpm="32 6 2 1"

"0 c #00"

"1 c none"

""

""

""

""

""

""

[end]

 

[_line]

Type=0x11001

String1=0x0,Bridge

FontStyle=NoLabel

UseOrientation=N

Xpm="32 9 2 1"

"0 c #00"

"1 c none"

""

""

""

""

""

""

""

""

""

[end]

 

[_line] 

Type=0x11002

String1=0x0,Bridge

FontStyle=NoLabel

UseOrientation=N

Xpm="32 11 2 1"

"0 c #00"

"1 c none"

""

""

""

""

""

""

""

""

""

""

""

[end]

 

Regards,

Mike

 

From: greg crago [mailto:gregcr...@gmail.com] 
Sent: 20 January 2016 21:58
To: Development list for mkgmap 
Subject: [mkgmap-dev] Any way to get BRIDGES=YES to be drawn on TOP of all 
other ways?

 

I really wanted the .img file to look like the real roads. If a linetype 
crossed over another way, it would be drawn on top. Since there is a limited 
number of Routable linetypes, I decided to just use one linetype and label it 
"bridge". But this still does not work. I get some ways being drawn on top of 
the bridge way. Any sure way to get bridges to be drawn on top?

 

In my lines file I have added (Tertiary example ):

 

 

highway=tertiary & mkgmap:unpaved=1 [0x11 road_class=1 road_speed=3 resolution 
20] # I use a THICK UNPAVED LINETYPE

highway=tertiary & oneway=yes [0x26 resolution 20 continue] # I overlay ARROWS 
underneath the way

highway=tertiary & cycleway=lane [0x17 resolution 20 continue] # I overlay 2 
bike lanes alongside the way (not currently working, yet)

highway=tertiary & bridge!=yes [0x05 road_class=1 road_speed=3 resolution 20] # 
draw all ways that do not have bridges

 

 

# at the end of the lines file, just before FINALIZE

highway=tertiary & bridge=yes [0x12 road_class=1 road_speed=3 resolution 20] # 
draw bridges last so they will be on top.

 

 

Anybody got this to work?

 

Greg

___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

[mkgmap-dev] Time Zones in the USA defined or not?

2016-01-20 Thread greg crago
I was looking at Administrative boundarys in INDIANA, trying to find if
TIME ZONES are defined in the OSM. There is a linetype '0x19 Time Zone'
defined and I would like to add it to my maps (huge red thick line, so you
are aware you are passing the zone)

I don't think this is defined in the USA

Is anyone using linetype 0x19?

Greg
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

[mkgmap-dev] Any way to get BRIDGES=YES to be drawn on TOP of all other ways?

2016-01-20 Thread greg crago
I really wanted the .img file to look like the real roads. If a linetype
crossed over another way, it would be drawn on top. Since there is a
limited number of Routable linetypes, I decided to just use one linetype
and label it "bridge". But this still does not work. I get some ways being
drawn on top of the bridge way. Any sure way to get bridges to be drawn on
top?

In my lines file I have added (Tertiary example ):


highway=tertiary & mkgmap:unpaved=1 [0x11 road_class=1 road_speed=3
resolution 20] # I use a THICK UNPAVED LINETYPE
highway=tertiary & oneway=yes [0x26 resolution 20 continue] # I overlay
ARROWS underneath the way
highway=tertiary & cycleway=lane [0x17 resolution 20 continue] # I overlay
2 bike lanes alongside the way (not currently working, yet)
highway=tertiary & bridge!=yes [0x05 road_class=1 road_speed=3 resolution
20] # draw all ways that do not have bridges


# at the end of the lines file, just before FINALIZE
highway=tertiary & bridge=yes [0x12 road_class=1 road_speed=3 resolution
20] # draw bridges last so they will be on top.


Anybody got this to work?

Greg
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

[mkgmap-dev] Is there a way I can get TURNING_CIRCLE and TURNING_LOOP to add a 'ball' to the end of my ways?

2016-01-20 Thread greg crago
I have been updating the OSM map looking for missing TURNING_LOOP and
TURNING_CIRCLES.
It would be nice if I could generate a map that give some kind of
representation of a BALL looking shape to the end of my ways, so when I am
driving around and encounter a TURNING_LOOP or TURNING_CIRCLE I can tell if
I need to add it to the OSM map, or not.

Greg
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using mkgmap -3657 and motorway_junction, ref=(exit#)

2016-01-20 Thread greg crago
Yes Gerd,
I have the code in my lines file that you mentioned.

When you test this. Did you download an .img file to a GPS, or is there an
'on-line GPS simulator?'

Greg

On Wed, Jan 20, 2016 at 3:09 AM, Steve Sgalowski 
wrote:

> I will try this with the latest mkgmap file with my montana 600 series
> garmin hand held unit
>
> Stephen
>
>
> On Wed, Jan 20, 2016 at 5:42 PM, Gerd Petermann <
> gpetermann_muenc...@hotmail.com> wrote:
>
>> Hi Greg,
>>
>>
>> I just tried your example with the default style.
>>
>> I see a hint containing the exit number (28) when I only use
>> --process-exits (without --process-destination)
>>
>> With --process-destination I see the hint "Exit right onto ramp onto
>> Plymouth Livonia"
>>
>> I am not sure if it is intended that the --process-destination "removes"
>> the exit hint,
>>
>> this looks like an error to me. I'll have to dig into the code and the
>> archives to understand what it should do.
>>
>> In the meantime you may check your style: Does your lines file contain
>> rules like these?
>>
>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>> mkgmap:exit_hint=true & mkgmap:dest_hint=true
>>   { name '${destination:ref|subst: =>} ${destination|subst:;=> |subst:/=>
>> }' |
>>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>>  '${destination|subst:;=> |subst:/=> }' |
>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>>  'Exit ${mkgmap:exit_hint_exit_to}' |
>>  'Exit ${mkgmap:exit_hint_name}' |
>>  'Exit ${mkgmap:exit_hint_ref}'
>>}
>>
>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>> mkgmap:exit_hint!=* & mkgmap:dest_hint=true
>>   { name '${destination:ref|subst: =>} ${destination|subst:;=> |subst:/=>
>> }' |
>>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>>  '${destination|subst:;=> |subst:/=> }'
>>}
>>
>> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
>> mkgmap:exit_hint=true & mkgmap:dest_hint!=*
>>   { name 'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>>  'Exit ${mkgmap:exit_hint_exit_to}' |
>>  'Exit ${mkgmap:exit_hint_name}' |
>>  'Exit ${mkgmap:exit_hint_ref}'
>>}
>>
>>
>>
>> Gerd
>>
>> --
>> *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
>> mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
>> gregcr...@gmail.com>
>> *Gesendet:* Mittwoch, 20. Januar 2016 00:28
>> *An:* Development list for mkgmap
>> *Betreff:* Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600
>> using mkgmap -3657 and motorway_junction, ref=(exit#)
>>
>> Yes Gerd,
>>
>> I use both of those options in my mkgmap command. Is there any other way
>> to get the EXIT number displayed on my GPS during active routing for the
>> 'next turn'?
>>
>> Greg
>>
>> On Tue, Jan 19, 2016 at 1:52 PM, Gerd Petermann <
>> gpetermann_muenc...@hotmail.com> wrote:
>>
>>> Hi Greg,
>>>
>>>
>>> I did not yet try your example, but I am sure that neither
>>>
>>> the java code nor the default style handles the tag destination:street.
>>>
>>> I think this can be changed, not sure whether in the style or in the
>>> java code.
>>>
>>> Besides that: do you use the option --process-destinations and
>>> --process-exits ?
>>>
>>>
>>> Gerd
>>>
>>>
>>> --
>>> *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
>>> mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
>>> gregcr...@gmail.com>
>>> *Gesendet:* Dienstag, 19. Januar 2016 19:34
>>> *An:* mkgmap-dev@lists.mkgmap.org.uk
>>> *Betreff:* [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using
>>> mkgmap -3657 and motorway_junction, ref=(exit#)
>>>
>>> I have entered exit info to this NODE:
>>>
>>> highway=motorway_junction
>>> ref=28
>>>
>>> https://www.openstreetmap.org/node/62928686
>>> 
>>> OpenStreetMap | Node: 62928686
>>> 
>>> www.openstreetmap.org
>>> OpenStreetMap is a map of the world, created by people like you and free
>>> to use under an open license.
>>>
>>>
>>>
>>>
>>> I have entered this information on the following WAY:
>>>
>>> destination=Plymouth;Livonia
>>> destination:street=Ann Arbor Road
>>>
>>> https://www.openstreetmap.org/way/25926768
>>>
>>> When I activate a ROUTE on my GARMIN MONTANA 600, It show "in 6mi,
>>> PLYMOUTH ANN ARBOR (using the Nuvi type layout)
>>>
>>> I do not get any EXIT or STREET information (in 6mi, exit 28, Ann Arbor
>>> road PLYMOUTH LIVONIA)",
>>>
>>> Am I doing something wrong?
>>> Greg
>>>
>>> ___
>>> mkgmap-dev mailing list
>>> mkgmap-dev@lists.mkgmap.org.uk
>>> http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev
>>>
>>
>>
>> _

Re: [mkgmap-dev] [Patch v1] reduce line distortion

2016-01-20 Thread Minko
Thanks for the fix Gerd! 

For an example of this fixed issue, 
see http://www.dropbox.com/s/ny2c769np3zq40k/bug_fixed.jpg?raw=1


Gerd wrote:
> I think a distance of less than 0.4 m is not visible, and nearly all
> calculated points are
> now closer than that.
> A binary based on r3658 is here:
> http://files.mkgmap.org.uk/download/287/mkgmap.jar
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev


[mkgmap-dev] [Patch v1] reduce line distortion

2016-01-20 Thread Gerd Petermann
Hi all,


in a private mail Minko pointed out that the changes in the housenumber code

introduced a "cosmetic problem":

If the housenumber code adds a so called number node to a road and the style

also added one or more overlays for that road the road and the overlay line(s) 
may no

longer be the same. In some cases the added number node was > 1 m from the 
overlay line(s),

so the map looks as if there are two roads.

The attached patch changes the calculation of the position of the number node 
so that

smaller distortion is preferred. It also simplifies the code, which should be 
continued ...


I think a distance of less than 0.4 m is not visible, and nearly all calculated 
points are

now closer than that.


A binary based on r3658 is here:

http://files.mkgmap.org.uk/download/287/mkgmap.jar


If I here no complains I'll commit this patch next Monday.


Gerd



reduce-line-distortion-v1.patch
Description: reduce-line-distortion-v1.patch
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using mkgmap -3657 and motorway_junction, ref=(exit#)

2016-01-20 Thread Steve Sgalowski
I will try this with the latest mkgmap file with my montana 600 series
garmin hand held unit

Stephen


On Wed, Jan 20, 2016 at 5:42 PM, Gerd Petermann <
gpetermann_muenc...@hotmail.com> wrote:

> Hi Greg,
>
>
> I just tried your example with the default style.
>
> I see a hint containing the exit number (28) when I only use
> --process-exits (without --process-destination)
>
> With --process-destination I see the hint "Exit right onto ramp onto
> Plymouth Livonia"
>
> I am not sure if it is intended that the --process-destination "removes"
> the exit hint,
>
> this looks like an error to me. I'll have to dig into the code and the
> archives to understand what it should do.
>
> In the meantime you may check your style: Does your lines file contain
> rules like these?
>
> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
> mkgmap:exit_hint=true & mkgmap:dest_hint=true
>   { name '${destination:ref|subst: =>} ${destination|subst:;=> |subst:/=>
> }' |
>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>  '${destination|subst:;=> |subst:/=> }' |
>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>  'Exit ${mkgmap:exit_hint_exit_to}' |
>  'Exit ${mkgmap:exit_hint_name}' |
>  'Exit ${mkgmap:exit_hint_ref}'
>}
>
> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
> mkgmap:exit_hint!=* & mkgmap:dest_hint=true
>   { name '${destination:ref|subst: =>} ${destination|subst:;=> |subst:/=>
> }' |
>  '${ref|subst: =>} ${destination|subst:;=> |subst:/=> }' |
>  '${destination|subst:;=> |subst:/=> }'
>}
>
> (highway=motorway_link | highway=trunk_link | highway=primary_link) &
> mkgmap:exit_hint=true & mkgmap:dest_hint!=*
>   { name 'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_name}' |
>  'Exit ${mkgmap:exit_hint_ref} ${mkgmap:exit_hint_exit_to}' |
>  'Exit ${mkgmap:exit_hint_exit_to}' |
>  'Exit ${mkgmap:exit_hint_name}' |
>  'Exit ${mkgmap:exit_hint_ref}'
>}
>
>
>
> Gerd
>
> --
> *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
> mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
> gregcr...@gmail.com>
> *Gesendet:* Mittwoch, 20. Januar 2016 00:28
> *An:* Development list for mkgmap
> *Betreff:* Re: [mkgmap-dev] Trying to get EXIT info on my MONTANA 600
> using mkgmap -3657 and motorway_junction, ref=(exit#)
>
> Yes Gerd,
>
> I use both of those options in my mkgmap command. Is there any other way
> to get the EXIT number displayed on my GPS during active routing for the
> 'next turn'?
>
> Greg
>
> On Tue, Jan 19, 2016 at 1:52 PM, Gerd Petermann <
> gpetermann_muenc...@hotmail.com> wrote:
>
>> Hi Greg,
>>
>>
>> I did not yet try your example, but I am sure that neither
>>
>> the java code nor the default style handles the tag destination:street.
>>
>> I think this can be changed, not sure whether in the style or in the java
>> code.
>>
>> Besides that: do you use the option --process-destinations and
>> --process-exits ?
>>
>>
>> Gerd
>>
>>
>> --
>> *Von:* mkgmap-dev-boun...@lists.mkgmap.org.uk <
>> mkgmap-dev-boun...@lists.mkgmap.org.uk> im Auftrag von greg crago <
>> gregcr...@gmail.com>
>> *Gesendet:* Dienstag, 19. Januar 2016 19:34
>> *An:* mkgmap-dev@lists.mkgmap.org.uk
>> *Betreff:* [mkgmap-dev] Trying to get EXIT info on my MONTANA 600 using
>> mkgmap -3657 and motorway_junction, ref=(exit#)
>>
>> I have entered exit info to this NODE:
>>
>> highway=motorway_junction
>> ref=28
>>
>> https://www.openstreetmap.org/node/62928686
>> 
>> OpenStreetMap | Node: 62928686
>> 
>> www.openstreetmap.org
>> OpenStreetMap is a map of the world, created by people like you and free
>> to use under an open license.
>>
>>
>>
>>
>> I have entered this information on the following WAY:
>>
>> destination=Plymouth;Livonia
>> destination:street=Ann Arbor Road
>>
>> https://www.openstreetmap.org/way/25926768
>>
>> When I activate a ROUTE on my GARMIN MONTANA 600, It show "in 6mi,
>> PLYMOUTH ANN ARBOR (using the Nuvi type layout)
>>
>> I do not get any EXIT or STREET information (in 6mi, exit 28, Ann Arbor
>> road PLYMOUTH LIVONIA)",
>>
>> Am I doing something wrong?
>> Greg
>>
>> ___
>> mkgmap-dev mailing list
>> mkgmap-dev@lists.mkgmap.org.uk
>> http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev
>>
>
>
> ___
> mkgmap-dev mailing list
> mkgmap-dev@lists.mkgmap.org.uk
> http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev
>
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev