FDOT.Map.SelectPolyline()

Modified on Wednesday, 15 June 2011 09:33 AM by 156.75.200.125 — Categorized as: Javascript

The selectPoint method enables geometry selection mode for the map. Once the user clicks a point on the map the callback function will be executed passing in the selected geometry.

Table of Contents [Hide/Show]


Example


FDOT.Map.selectPoint(function(geometry) {
	FDOT.Map.executeCommand("draw", { DrawingObjects : [ geometry ] });
});

See Also