Add Blips

This endpoint allows you to add a new custom blip to your 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 Add Blip API endpoint.

function addBlips(blips, cb)
    exports["sonorancad"]:performApiRequest(blips, "ADD_BLIP", function(res)
        if cb ~= nil then
            cb(res)
        end
    end)
end

Parameters

PropertyTypeDescription

blips

Table

Table of blip objects

cb

Function

OPTIONAL: Callback function

Last updated