Function SignUrl()

Sign your parameterized shared map's URL so users cannot change its parameters

Sergey Shurygin avatar
Written by Sergey Shurygin
Updated over a week ago

Use SignUrl(url) to create a signed URL from an unsigned parameterized URL of a shared map - to prevent users from changing the values of its parameters: if a user modifies a signed URL, for example updates a URL parameter, this will make the signature mismatch the URL content and Mapsly will not load such URL. Learn more about signing shared map URLs here.

How to use

Use the function in the following way:

SignUrl(url)

Input

  • url: the full URL of a parameterized shared map without a signature, for example:
    https://app.mapsly.com/sharedmap/5f329d3e01d740ea8/?customer_id=58472

Output

The signed URL of the shared map. The signature is appended to the end of the URL - in the signature URL parameter. For the input example above, the output will look like:
https://app.mapsly.com/sharedmap/5f329d3e01d740ea8/?customer_id=58472&signagure=gT7r0Iy6RLbfdU65Р8О9dE27V5k0hf67

Example

{{SignUrl('https://app.mapsly.com/sharedmap/g6r4551fgHg6f57?customer_id=' + record.id)}}

See also

Did this answer your question?