Map Markers Not Working

ThreePlus

Member
Every map marker I try to use does not work, They seem to work for others but not me.

What I've tried.

_PVP1 = createMarker ["PVP1", [6002.42,14414.1,-0.004]];
_PVP1 setMarkerText "No Flyzone/No Entry";
_PVP1 setMarkerType "mil_objective";
_PVP1 setMarkerColor "ColorRed";
_PVP1 setMarkerBrush "Solid";
PVP1 = _PVP1;

_this = createMarker ["AdminBase", [6002.42,14414.1,-0.004]];
_this setMarkerText "No Flyzone/No Entry";
_this setMarkerShape "ELLIPSE";
_this setMarkerType "waypoint";
_this setMarkerColor "ColorRed";
_this setMarkerBrush "Grid";
_this setMarkerSize [1200, 1200];
_marker_0 = _this;

class Item6
{
position[]={6002.42,14414.1,-0.004};
name="adminbase";
text="No Flyzone/No Entry";
type="waypoint";
colorName="ColorGreen";
};

None of which seem to work
 
Here is how I use the elipse marker:

Code:
class Item20
        {
            position[]={12466.402,159,12524.384};
            name="air_safezone";
            text="Safe Zone";
            markerType="ELLIPSE";
            type="Empty";
            colorName="ColorOrange";
            a=100;
            b=100;
        };

And don't forget to increase the item count:

Code:
class Markers
    {
        items=23; // increase to last item number + 1

And are you sure you got the coordinates right?

I think you'r using x,y,z and I think the correct format should be x,z,y
 
Back
Top