Hello,
How to paint lines on the map. The line should be thick and black
Evas_Object *map;
Elm_Map_Overlay *line;
line = elm_map_overlay_line_add(map, 21.012, 52.230, 21.112, 52.330);
elm_map_overlay_color_set(line, 0, 0, 0, 255);
After this code is executed, the line is thin and green.
Please Help me.