Hi,
I'm using Bing Maps Connector (https://docs.microsoft.com/en-us/connectors/bingmaps/#get-static-map).
I've created an image, and put
BingMaps.GetMapV2(
"CanvasLight";
16;
Location.Latitude;
Location.Longitude;
{
pushpinLatitude: Location.Latitude;
pushpinLongitude: Location.Longitude;
pushpinIconStyle: 37
}
)I've now realised that his makes loads of API calls to Bing Maps - for 3 users, we've exceeded 2500 calls in total, as the image keeps refreshing. How would I limit the number of requests to 1? So to make sure that the image is only loaded once, even if the user is moving?
Thanks!