We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Static Maps support allows you to get a valid url which you can use, for example, with an <img src=""> tag.
<img src="">
var map = new StaticMapRequest(); map.Center = new Location("1600 Amphitheatre Parkway Mountain View, CA 94043"); map.Size = new System.Drawing.Size(400, 400); map.Zoom = 14; map.Sensor = false; var imgTagSrc = map.ToUri();