[OSM-talk] my flag is not showing on the green

2009-08-27 Thread Kenneth Gonsalves
hi, am trying to customise a golf course using mapnik. I want a red flag on the green. I have tagged points on the course with the tag: golf=green I have created a flag called flag.png I have added 'node golf text' in default.style of osm2pgsql, recreated the database and confirmed that ther

Re: [OSM-talk] my flag is not showing on the green

2009-08-27 Thread Jon Burgess
On Thu, 2009-08-27 at 16:29 +0530, Kenneth Gonsalves wrote: > select node from planet_osm_point where > golf='green' as golfmarkers Try: select way,golf from planet_osm_point where golf='green' as golfmarkers * way is required for Mapnik to know where the point is located. * golf is req

Re: [OSM-talk] my flag is not showing on the green

2009-08-27 Thread Lennard
Kenneth Gonsalves wrote: > select node from planet_osm_point where > golf='green' as golfmarkers > > but the flag is not showing. What could be wrong? select way from planet_osm_point -- Lennard ___ talk mailing list talk@openstreetmap.

Re: [OSM-talk] my flag is not showing on the green

2009-08-27 Thread Kenneth Gonsalves
On Friday 28 Aug 2009 12:08:37 am Jon Burgess wrote: > On Thu, 2009-08-27 at 16:29 +0530, Kenneth Gonsalves wrote: > > select node from planet_osm_point where > > golf='green' as golfmarkers > > Try: > > select way,golf from planet_osm_point where golf='green' as golfmarkers > > * way is req