/** Constructs a drop event.
* @param dragged the component being dragged and drop to {@link #getTarget}.
*/
public MapDropEvent(String name, Component target, Component dragged,
double lat, double lng, int x, int y, int pageX, int pageY, int keys) {
this(name, target, dragged,new LatLng(lat, lng), x, y, pageX, pageY, keys);
}