Remove Blip

This endpoint allows you to remove custom blips from your community's live map.

This framework export handles the Remove Blip API endpoint.

function removeBlip(ids, cb) {
    exports["sonorancad"].performApiRequest({
        "ids": ids
    }, "REMOVE_BLIP", function (res) {
        if (cb !== null) {
            cb(res);
        }
    });
}

Parameters

Property
Type
Description

ids

Integer

Blip ID to remove

cb

Function

OPTIONAL: Callback function

Last updated

Was this helpful?