Add Blips

This endpoint allows you to add a new custom blip to your community's live map!

This framework export handles the Add Blip API endpoint.

function addBlips(blips, cb) {
    exports["sonorancad"].performApiRequest(blips, "ADD_BLIP", function (res) {
        if (cb != null) {
            cb(res);
        }
    });
}

Parameters

Property
Type
Description

blips

Table

Table of blip objects

cb

Function

OPTIONAL: Callback function

Last updated

Was this helpful?