Can someone help me with my project? How can I call textbox details in javascript?
function AddPushpin()
{
var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
shape.SetTitle(**
shape.SetDescription('This is shape number '+pinid);
pinid++;
map.AddShape(shape);
}
source
share