Hi! I am trying to import an Africa SVG map via processing but the when I run the program, it loads the Africa map in a black colour as opposed to the gray colour of the original SVG where the states are clearly demarcated by a line. Uploading some images below to show you how it looks -
Code I am using:
< //Variables
PShape baseMap;
//Setup your base code
void setup() {
size(1000, 1000);
baseMap = loadShape(“AfricaMap.svg”);
}
//Draw everything here
void draw() {
shape(baseMap, 0, 0, width, height);
noStroke();
fill(150, 150, 150, 20);
ellipse(150, 150, 200, 200);
}
/>