Add Temp Blip
This endpoint allows you to add a new custom blip for a set amount of time to your community's live map!
function addTempBlipData(blipId, blipData, waitSeconds, returnToData) {
exports["sonorancad"].performApiRequest({
id: blipId,
data: blipData
}, "MODIFY_BLIP", function (_) { });
setTimeout(function () {
exports["sonorancad"].performApiRequest({
id: blipId,
data: returnToData
}, "MODIFY_BLIP", function (_) { });
}, waitSeconds * 1000);
}Parameters
Property
Type
Description
Last updated
Was this helpful?

