I've created a bing static map image using the REST API and it plots multiple points and works perfectly. However, the URL has a maximum number of 18 pushpins that can be added and I think i'll need more.
POSTing to the API removes this limit - and I'm aware I could go down the route of embedding an iframe with a suitably coded page, but i'd like to avoid that and instead use the BingMaps.GetMapV2 action to generate the image, hoping it wouldn't have the limit either.
BingMaps.GetMapV2("Road","11","53.52305847737009","-1.1844752159618133",{pushpinLatitude:53.53305847737009,pushpinLongitude:-1.1844752159618133,pushpinIconStyle:77})
However, I can't get it to accept more than one pushpin. Is this just a limitation of the connection or is there a way around it?