Jump to content
Sign in to follow this  
Vadym Mazur

Addtional map legend markers

Recommended Posts

Good day.

Its possible add more markers for map legend server-side?

Im trying create foulder "icons" and put inside image.paa

description.ext

class CfgMarkerClasses
{
	class NewMarkers
	{
		displayName="New Markers";
	};

};

class CfgMarkers
{
	class image_simple
	{
		name="Marker name";
		icon="icons\image.paa";
		color[]={1,1,1,1};
		size=32;
		shadow=0;
		markerClass="NewMarkers";
	};
};

Thanks in advance

Share this post


Link to post
Share on other sites
On 10/20/2023 at 10:55 AM, Vadym Mazur said:

Good day.

Its possible add more markers for map legend server-side?

Im trying create foulder "icons" and put inside image.paa

description.ext


class CfgMarkerClasses
{
	class NewMarkers
	{
		displayName="New Markers";
	};

};

class CfgMarkers
{
	class image_simple
	{
		name="Marker name";
		icon="icons\image.paa";
		color[]={1,1,1,1};
		size=32;
		shadow=0;
		markerClass="NewMarkers";
	};
};

Thanks in advance

 

Only a mod can add things to CfgMarkers and CfgMarkerClasses.

 

The only way you can get clients to download image data from the server is to include it in the mission.

 

You can draw icons on the map using drawIcon, note that these do not function like regular markers have to be manually managed.

See the examples in the linked BIKI page.

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×