Remove Blip With Subtype

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

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

Property
Type
Description

subType

String

Blip subtype to remove

cb

Function

OPTIONAL: Callback function

Last updated

Was this helpful?