Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You may copy the following Snippets into your .MAP file using the Map Editor in Studio.

NHS Choices

DescriptionSnippetThumb

Dentists


Code Block
	LAYER
        NAME nhsdentists
        STATUS OFF
        TYPE POINT
        INCLUDE "datashare.inc"
        DATA "wkb_geometry from 
			(select * from nhschoices.dentists) as foo 
			using unique ogc_fid using srid=27700"
        TOLERANCEUNITS METERS
        CLASS
			NAME "supplied by nhs choices"
            STYLE
                 SYMBOL "dentists"
            END
        END
	END


Doctors


Code Block
	LAYER
        NAME nhsdoctors
        STATUS OFF
        TYPE POINT
        INCLUDE "datashare.inc"
        DATA "wkb_geometry from 
			(select * from nhschoices.doctors) as foo 
			using unique ogc_fid using srid=27700"
        TOLERANCEUNITS METERS
        CLASS
			NAME "supplied by nhs choices"
            STYLE
                 SYMBOL "doctors"
            END
        END
	END


Hospitals


Code Block
	LAYER
        NAME nhshospitals
        STATUS OFF
        TYPE POINT
        INCLUDE "datashare.inc"
        DATA "wkb_geometry from 
			(select * from nhschoices.hospitals) as foo 
			using unique ogc_fid using srid=27700"
        TOLERANCEUNITS METERS
        CLASS
			NAME "supplied by nhs choices"
            STYLE
                 SYMBOL "hospitals"
            END
        END
	END	


Opticians


Code Block
	LAYER
        NAME nhsopticians
        STATUS OFF
        TYPE POINT
        INCLUDE "datashare.inc"
        DATA "wkb_geometry from 
			(select * from nhschoices.opticians) as foo 
			using unique ogc_fid using srid=27700"
        TOLERANCEUNITS METERS
        CLASS
			NAME "supplied by nhs choices"
            STYLE
                 SYMBOL "opticians"
            END
        END
	END	


Pharmacies


Code Block
	LAYER
        NAME nhspharmacies
        STATUS OFF
        TYPE POINT
        INCLUDE "datashare.inc"
        DATA "wkb_geometry from 
			(select * from nhschoices.pharmacies) as foo 
			using unique ogc_fid using srid=27700"
        TOLERANCEUNITS METERS
        CLASS
			NAME "supplied by nhs choices"
            STYLE
                 SYMBOL "pharmacies"
            END
        END
	END	


...