Hi all
With the ability to use graphic draw tools (point, line, polygons) and create the objects to use in a query such as those in this example:
https://developers.arcgis.com/javascript/3/samples/util_buffergraphic/
How would I customise this so as to be able to enter x,y coordinates manually to create an object such as a point, line or polygon and then buffer this?
I have a simple create a point object and zoom to it taking in user entered x,y coordinates using the following:
on(dom.byId("btnFindCoordinates"), "click", function() {
map.graphics.clear();
var x = dom.byId("xCoord").value;
var y = dom.byId("yCoord").value;
var coordPoint = new Point(x,y);
prjParams.geometries = [coordPoint];
map.centerAndZoom(coordPoint, 11);
map.graphics.add(new Graphic(coordPoint, markerSymbol));
});
But not sure how I would add this into the example above, any hints welcome.
Thanks and best,
Mark