Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I am trying to put road No in the shield with tilemill .mss. Here is the code I used.

#road {
    shield-file:  url(C:\wamp\www\shield.png);
    shield-name: [ROAD_NO];
    shield-face-name:"DejaVu Sans Bold";
    shield-size:10;
    shield-fill: white;
    shield-spacing:50;
    shield-line-spacing:5;
    shield-type: png;
        }

Its return two errors in the shield-file and shield-name fields.

What wrong I have done here?

share|improve this question

1 Answer

up vote 2 down vote accepted

Got It....

#road {
    shield-file:  url("C:\wamp\www\shield.png");
    shield-name: [ROAD_NO];
    shield-face-name:"DejaVu Sans Bold";
    shield-size:10;
    shield-fill: white;
    shield-spacing:50;
    shield-line-spacing:5;
    shield-type: png;
        }
share|improve this answer
Please mark your answer as accepted so others can find it. And as a bonus, you'll get a hat! – Jason Scheirer Dec 26 '12 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.