Remove Blip With Subtype

This endpoint allows you to retrieve all custom blips for a community's live map!

This API endpoint requires the pro version of Sonoran CAD or higher. For more information, see our pricing page.

This framework export handles the Remove Blip API endpoint.

function removeWithSubtype(subType, cb) {
    Utilities.CAD.getBlips(function (res) {
        let dres = JSON.parse(res);
        let ids = [];
        if (typeof dres == "table") {
            for (let _ in dres) {
                let v = dres[_];
                if (v.subType == subType) {
                    ids.push(v.id);
                }
            }
            Utilities.CAD.removeBlip(ids, cb);
        } else {
            console.log("No blips were returned.");
        }
    });
}

Parameters

PropertyTypeDescription

subType

String

Blip subtype to remove

cb

Function

OPTIONAL: Callback function

Last updated