Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 900 Bytes

File metadata and controls

33 lines (27 loc) · 900 Bytes
description
This endpoint allows you to remove custom blips from your community's live map.

Remove Blip

{% hint style="warning" %} This API endpoint requires the pro version of Sonoran CAD or higher.
For more information, see our pricing page. {% endhint %}

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